Rails - 如何在具有多个/属于关系中设置模型新记录的 id 值?

发布于 2024-10-09 13:03:52 字数 278 浏览 4 评论 0原文

我正在尝试创建一条记录,在 has_many 和 Belongs_to 关系中,

用户有很多帖子和属于用户的帖子,

@post = Post.new( params[:post], :user_id => current_user.id )
@post.save

但我不断收到参数数量错误的错误。

我可以以某种方式自动设置 Post 模型的 user_id 字段吗?我正在使用 Devise,这是 current_user 调用的来源。

I'm trying to create a record that in in a has_many and belongs_to relationship

user hasmany posts and posts belongto user

@post = Post.new( params[:post], :user_id => current_user.id )
@post.save

but I'm keep getting a wrong number of arguments error.

Can i set the user_id field of the Post model automatically somehow? I'm using Devise which is where the current_user call comes from.

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

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

发布评论

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

评论(3

后eg是否自 2024-10-16 13:03:52

还有几种方法:

@post = Post.new(params[:post])
@post.user_id = current_user.id
@post.save

或者:

@post = current_user.posts.build(params[:post])
@post.save

A couple more ways:

@post = Post.new(params[:post])
@post.user_id = current_user.id
@post.save

Or:

@post = current_user.posts.build(params[:post])
@post.save
意中人 2024-10-16 13:03:52

params[:post] 哈希与 {:user_id => 合并current_user.id}

@post = Post.new(params[:post].merge({:user_id => current_user.id}))
@post.save

请参阅Hash#merge

Merge the params[:post] hash with {:user_id => current_user.id}:

@post = Post.new(params[:post].merge({:user_id => current_user.id}))
@post.save

See Hash#merge

葬心 2024-10-16 13:03:52

如果您使用简单的 has_many 和 Belongs_to 关联,则用户表中不需要有 post_id 列。 posts 表中只需要有一个 user_id 列,

您可以执行以下操作:

@post = Post.new(params[:post])
@post.user_id = session[:user_id] #or an equivalent.
@post.save
@user.posts << @post

If you're using simple has_many and belongs_to associations there needn't be a post_id column in the users table. There need only be a user_id column in the posts table

With that you can do :

@post = Post.new(params[:post])
@post.user_id = session[:user_id] #or an equivalent.
@post.save
@user.posts << @post
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文