轨道:在模型中查找正确的项目



问题:查找属于帖子的正确评论

我正在尝试实现一个"喜欢"功能(就像在Facebook上一样)来评论特定帖子。我已经为我的帖子实现了相同的功能,但是"指向正确的评论"让我很难过。澄清一下,我的"like"函数会导致以下GET调用:

http://localhost:3000/posts/11/comments/4/like

但它实际上应该调用

/posts/4/comments/11/like

我检查了我的路线,对我来说似乎是对的

like_post_comment GET    /posts/:post_id/comments/:id/like(.:format)

所以我想问题出在控制器上。

我comments_controller的类似动作开始时,我有

def like
    @post = Post.find(params[:post_id])
    @comment = @post.comments.find(params[:comment])

我认为这一定是错误的,但我不确定为什么或如何解决它。其他操作以类似的方式设置局部变量@post和@comment,但它们可以正确完成工作。

def create
    @post = Post.find(params[:post_id])
    @comment = @post.comments.create(params[:comment])
def destroy
    @post = Post.find(params[:post_id])
    @comment = @post.comments.find(params[:comment])

我如何呈现评论链接

<td><b><%= link_to 'like', like_post_comment_path(comment) %></b></td>

替换您的链接

<td><b><%= link_to 'like', like_post_comment_path(comment) %></b></td>

<td><b><%= link_to 'like', like_post_comment_path(@post, comment) %></b></td>

并将您在控制器中的类似动作替换为

def like
  @post = Post.find(params[:post_id])
  @comment = @post.comments.find(params[:id])
  # ...
end
这样

称呼它

<%= link_to 'like', like_post_comment_path(@post, comment) %>

其中@post是当前帖子对象

这个:

/posts/:post_id/comments/:id/like(.:format)

告诉我您的帖子由post_id参数标识,您的评论由 id 参数标识。 因此,您的 like 方法应如下所示:

def like
  @post = Post.find(params[:post_id])
  @comment = @post.comments.find(params[:id])

相关内容

  • 没有找到相关文章

最新更新