当我尝试嵌套资源时,Rails3.1 中又出现另一个路由错误

发布于 2024-12-06 15:32:50 字数 495 浏览 2 评论 0原文

这是我的错误:

No route matches {:controller=>"accounts", :format=>nil}

这是 url:

users/1/accounts/new

这是 routes.rb 文件中的代码:

resources :users do
  resources :accounts
end

好的,现在我仍然对 Rails 中的关联感到困惑。上面的代码始终使用复数模型名称,例如 :users:accounts

现在,如果用户和帐户之间的关系是一对一的关系怎么办?难道代码不应该改成这样吗?

resources :users do
  resources :account
end

This is my error:

No route matches {:controller=>"accounts", :format=>nil}

and this is the url:

users/1/accounts/new

this is code in the routes.rb file:

resources :users do
  resources :accounts
end

OK, now I'm still confused about associations in Rails. The code above always uses the pluralized model name, like :users, :accounts.

Now, what if the relationship between user and account is one-to-one? Shouldn't the code change to something like this?

resources :users do
  resources :account
end

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文