【发布时间】:2020-04-02 20:40:22
【问题描述】:
多年后我正在使用 Rails 5。我使用的最后一个版本是 Rails 3。不知何故,我无法让“belongs_to”工作了。我已经阅读了所有建议的线程......但我就是不明白。
class User < ApplicationRecord
has_many :campaigns
class Campaign < ApplicationRecord
belongs_to :user, optional: true
但如果我尝试将活动链接到它的用户...
<%= link_to @campaign.user.UName, user_path %> </a></div>
我需要一种将广告系列与其用户相关联的方法...也许我只是有点生疏...我不记得在链接之前遇到过任何问题,例如,之前链接帖子的作者。
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 belongs-to ruby-on-rails-5.2