gpt4 book ai didi

ruby-on-rails - 使用 Ruby on Rails 3 的命名空间中的关联错误

转载 作者:行者123 更新时间:2023-12-04 17:00:50 25 4
gpt4 key购买 nike

在 'ROOT_RAILS/models/users/account.rb' 我有

has_one :profile,
:primary_key => "app_profile_id",
:foreign_key => "id",
:dependent => :destroy

在 'ROOT_RAILS/models/apps/profile.rb' 我有
belongs_to :user,
:primary_key => "id",
:foreign_key => "app_profile_id"

在 'ROOT_RAILS/config/routes.rb' 我有
namespace "users" do
resources :accounts
end

namespace "app" do
resources :profiles
end

当我尝试访问@account.profile(@account 是一个帐户 ActiveRecord)时,例如在“.html.erb”文件中,我收到此错误:
uninitialized constant Users::Account::Profile

什么/哪里有问题?

最佳答案

以下应该实现你想要做的事情:

路线.rb:

resources :users do
resource :profile
end

帐户.rb:
has_one :profile, :primary_key => "app_profile_id",
:dependent => :destroy

配置文件.rb:
belongs_to :user,
:foreign_key => "app_profile_id"

确保配置文件表也包含外键列。

关于ruby-on-rails - 使用 Ruby on Rails 3 的命名空间中的关联错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4684685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com