顯示名稱,而不是標識我有兩個表,accounts
和items
,我想從賬目表show
的buisness_name
代替id
的view/items/show.html.erb
頁面上。的Rails:在節目頁
目前我沒有模型之間的關聯,但我有表中的account_id
列。
create_table "accounts", force: :cascade do |t|
t.string "buisness_name"
t.string "web_site"
t.string "phone_number"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "items", force: :cascade do |t|
t.string "title"
t.text "description"
t.string "image"
t.decimal "price"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "category_id"
t.json "attachments"
t.integer "account_id"
end
我得到通過這個account_id
:<%= @item.account_id %>
,但我想,以顯示buisness_name
代替。
JFYI,這是「業務」,而不是「 buisness「 –
」目前我的模型之間沒有關聯「 - 這就是你需要解決的問題。 –