1
在博客應用程序中,我希望Next Comment
按鈕在用戶點擊該按鈕時顯示下一個(實例)註釋。前端挑戰Ruby on Rails
我有定義的方法和在Comment
模型中工作,所以我的問題是前端導向。
如何動態顯示最新評論?這意味着,軌道知道它是哪個評論,所以它能夠顯示下一條評論。
如何讓它出現在html元素中的
%comment
? (AJAX?)
welcome#index
:
- @articles.each do |article|
.article
%comment= article.comments.last.text
= link_to "Next Comment", welcome_next_comment_path
welcome_controller
:
class WelcomeController < ApplicationController
def index
...
end
def next_comment
find_comment
article.comments.next(@comment)
end
private
def find_comment
...
end
end