Rails 5 无法完成 "belongs_to"
Rails 5 unable to complete "belongs_to"
多年后我正在使用 Rails 5。我使用的最后一个版本是 Rails 3。不知怎么的,我无法让 "belongs_to" 工作了。我已经阅读了所有建议的主题...但我就是不明白。
class User < ApplicationRecord
has_many :campaigns
class Campaign < ApplicationRecord
belongs_to :user, optional: true
但是如果我尝试 link 向其用户发起活动...
<%= link_to @campaign.user.UName, user_path %> </a></div>
我需要一种方法来 link 向其用户发起活动...也许我只是有点生疏...我不记得遇到过任何麻烦 linking,因为例如,post 之前的作者。
undefined method `UName' for nil:NilClass
schema.rb
create_table "campaigns", options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t|
t.string "title"
t.text "description"
t.string "category"
t.string "artist"
t.string "backer"
t.string "update_title"
t.text "update_desc"
t.timestamp "update_time"
t.text "faq"
t.string "comments"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.float "goal", limit: 53
t.string "type"
t.timestamp "start_date"
t.timestamp "end_date"
t.string "video"
t.integer "user_id"
end
create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.boolean "superadmin", default: false, null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.string "UName"
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
link_to 实际上会生成一个 'a' 标签,不需要用 'a' 标签包裹它。您可以像下面这样使用 link_to:
<%= link_to @campaign.user.name, @campaign.user %>
当您调用 @campaign.user
时,用户返回 nil。
这可能有两个原因:
- 该用户与活动之间没有任何关系。 (因为你把它设置为可选的
optional: true
)
- 您未能正确设置模型之间的关系。
如果是第二个原因,我敢打赌是因为 has_many campaigns
行。据我所知,您应该像 has_many :campaigns
(符号)那样使用它。
多年后我正在使用 Rails 5。我使用的最后一个版本是 Rails 3。不知怎么的,我无法让 "belongs_to" 工作了。我已经阅读了所有建议的主题...但我就是不明白。
class User < ApplicationRecord
has_many :campaigns
class Campaign < ApplicationRecord
belongs_to :user, optional: true
但是如果我尝试 link 向其用户发起活动...
<%= link_to @campaign.user.UName, user_path %> </a></div>
我需要一种方法来 link 向其用户发起活动...也许我只是有点生疏...我不记得遇到过任何麻烦 linking,因为例如,post 之前的作者。
undefined method `UName' for nil:NilClass
schema.rb
create_table "campaigns", options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t|
t.string "title"
t.text "description"
t.string "category"
t.string "artist"
t.string "backer"
t.string "update_title"
t.text "update_desc"
t.timestamp "update_time"
t.text "faq"
t.string "comments"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.float "goal", limit: 53
t.string "type"
t.timestamp "start_date"
t.timestamp "end_date"
t.string "video"
t.integer "user_id"
end
create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=latin1", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.boolean "superadmin", default: false, null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.string "UName"
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
link_to 实际上会生成一个 'a' 标签,不需要用 'a' 标签包裹它。您可以像下面这样使用 link_to:
<%= link_to @campaign.user.name, @campaign.user %>
当您调用 @campaign.user
时,用户返回 nil。
这可能有两个原因:
- 该用户与活动之间没有任何关系。 (因为你把它设置为可选的
optional: true
) - 您未能正确设置模型之间的关系。
如果是第二个原因,我敢打赌是因为 has_many campaigns
行。据我所知,您应该像 has_many :campaigns
(符号)那样使用它。