Rails 控制台需要帮助 HABTM 关系

发布于 2024-11-18 15:52:19 字数 326 浏览 3 评论 0原文

我正在尝试找出使用控制台更新我的 Roles_users 模型的命令。我正在将 cancan 与 devise 结合使用,并尝试设置我的 seeds.rb。我想先测试一下。

我的用户有很多角色,反之亦然。一切工作正常,我的 Roles_users 表已填充。

我想弄清楚的是如何在控制台中更新用户。

我可以从我的开发日志中看到发生以下情况:

INSERT INTO "roles_users" ("role_id", "user_id") VALUES (3, 1)

我怎样才能在控制台中做到这一点?

谢谢

I'm trying to figure out the command to update my roles_users model using the console. Am using cancan with devise and I'm trying to set up my seeds.rb. I wanted to test first.

My users have many roles and vice versa. Everything is working fine and my roles_users table has been populated.

What I'm trying to figure out is how to update a user in the console.

I can see from my development log the following happens:

INSERT INTO "roles_users" ("role_id", "user_id") VALUES (3, 1)

How can I do exactly this in the console??

Thanks

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

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

发布评论

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

评论(1

べ繥欢鉨o。 2024-11-25 15:52:19

User.find(user_id).roles << Role.find(role_id)

User.find(user_id).roles << Role.find(role_id)

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