我需要资源路由和 :id 访问方面的帮助

发布于 2024-12-11 05:42:30 字数 642 浏览 0 评论 0原文

我如何从 like_book_path(@book),:method=>:post 中使用类似方法访问图书 ID。如您所见,此链接位于图书循环下。我需要什么如何使 like_book_path(@book) 携带 book_id 以及如何在类似操作中访问它? 到目前为止,我可以通过 book.id 获取 id。任何帮助将不胜感激。

视图:

<% @books.each do |book|%>
  <%= book.name%>
  <%= link_to "like this book", like_book_path(@book), :method => :post %>
<%end%>

图书控制器:

def like
  @book = Book.find(params[:id])
  #other methods to facilitate like functionality   
end

路线:

resources :book do
  member do
    post :like
  end
end

How do i access the book id in like method from like_book_path(@book),:method=>:post .As you can see,this link is under the book loop.What do i need to do to make like_book_path(@book) carry the book_id and how would i access it in like action?
so far in the view i can get the id through book.id .Any help will be greately appreciated.

View:

<% @books.each do |book|%>
  <%= book.name%>
  <%= link_to "like this book", like_book_path(@book), :method => :post %>
<%end%>

Book controller:

def like
  @book = Book.find(params[:id])
  #other methods to facilitate like functionality   
end

Route:

resources :book do
  member do
    post :like
  end
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

真心难拥有 2024-12-18 05:42:30

我想你应该用以下内容替换你的循环:

<% @books.each do |book|%>
  <%=book.name%>
  <%=link_to "like this book",like_book_path(book),:method=>:post %>
<%end%>

区别只是使用 book 而不是不存在的 @book

I guess you should replace your loop with:

<% @books.each do |book|%>
  <%=book.name%>
  <%=link_to "like this book",like_book_path(book),:method=>:post %>
<%end%>

the difference is just to use book instead of the non existing @book.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文