通过评论控制器传递评论的 post_id

发布于 2024-11-07 14:01:00 字数 796 浏览 0 评论 0原文

我有两个具有belongs_to/has_many 关系的模型。帖子有很多评论,评论属于帖子。

我需要通过 comments_controller.rb#new 传递 post_id。

def new
  @post = Post.find(params[:post_id])
  @comment = Comment.new(:parent_id => params[:parent_id], :post_id => params[:post_id])
end

评论表:

<%= simple_form_for([@post, @post.comments.new]) do |f| %>
  <%= f.input :post_id, :required => false, :as => :hidden %>
  <%= f.input :parent_id, :required => false, :as => :hidden %>
  <%= f.input :name, :label => false, :placeholder => "Name (optional)", :required => false %>
  <%= f.input :content, :label => false, :placeholder => "Reply", :as => :text %>
  <%= f.button :submit, "Reply" %>
<% end %>

I have two models with a belongs_to/has_many relationship. Posts have many comments, comments belong to posts.

I need to pass the post_id through comments_controller.rb#new.

def new
  @post = Post.find(params[:post_id])
  @comment = Comment.new(:parent_id => params[:parent_id], :post_id => params[:post_id])
end

comment form:

<%= simple_form_for([@post, @post.comments.new]) do |f| %>
  <%= f.input :post_id, :required => false, :as => :hidden %>
  <%= f.input :parent_id, :required => false, :as => :hidden %>
  <%= f.input :name, :label => false, :placeholder => "Name (optional)", :required => false %>
  <%= f.input :content, :label => false, :placeholder => "Reply", :as => :text %>
  <%= f.button :submit, "Reply" %>
<% end %>

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

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

发布评论

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

评论(1

南风起 2024-11-14 14:01:00

您可以将 params 从视图传递到控制器方法,但我认为您不能将 params 传递给控制器​​,然后传递给视图。

在您的 new 操作中,您可能必须声明一个 @variable 并将其定义为您可以在视图中使用它的params

但是,您已经有了 @post.id,为什么不能直接使用它呢?

You can pass a params from view to a controller method but I don't think you can pass a params to a controller then to a view.

In your new action, you may have to declare a @variable and define it to be your params where you can use it in your view.

But, you have already have @post.id, why can't you just use that?

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