gpt4 book ai didi

javascript - 使用 onclick 调用 Rails "posts#show"操作

转载 作者:行者123 更新时间:2023-12-03 10:15:40 27 4
gpt4 key购买 nike

这是我的index.html.erb

<% @posts.each do |post| %>
<li>
<%= post.title %> <%= post.author %>
<%= link_to "show", post_path(post) %>
</li>
<% end %>

我单击“show” anchor ,它会转到该帖子的 show.html.erb。但我不需要 anchor ,我只想能够单击帖子本身并转到显示页面。实现这个的简单方法是什么?

最佳答案

您可以将onclick事件添加到li

<li onclick='window.location = "/posts/#{post.id}"'>
<%= post.title %> <%= post.author %>
</li>

,您可以将帖子内容包含在链接中

= link_to "#{post.title} #{post.author}", post_path(post)

关于javascript - 使用 onclick 调用 Rails "posts#show"操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29888732/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com