所以我从Item
开了一个ActiveRecord::Base
课程。我已实施show
操作,以便我可以从items\id
看到它。在show.html.erb
中,我访问了所有属性并在文件上标记了它们。当我进入网页时,没有任何属性出现,只有他们的标签。然后我去看看出了什么问题。存储属性的@item
对象出现了,但是当我逐个检查所有属性时,它们都是nil
。有谁知道为什么会这样?
[时间戳] _create_items.rb:
class CreateItems < ActiveRecord::Migration
def change
create_table :items do |t|
t.string :name
t.text :description
t.decimal :price
t.timestamps null: false
end
end
end
item.rb的:
class Item < ActiveRecord::Base
attr_accessor :name, :description, :price
validates :name, presence: true, uniqueness: true, length: { maximum: 100 }
validates :description, presence: true,
length: { maximum: 1000 }
VALID_PRICE_REGEX = /\A\d+(?:\.\d{0,2})?\z/
validates :price, presence: true,
:format => { with: VALID_PRICE_REGEX },
:numericality => {:greater_than => 0}
end
items_controller.rb:
class ItemsController < ApplicationController
def show
@item = Item.find(params[:id])
debugger
end
end
show.html.erb:
Name: <%= @item.name %>
Description: <%= @item.description %>
Price: <% @item.price %>
控制台输出:
(byebug) @item
#<Item id: 1, name: "Ruby Gem", description: "A real Ruby Gem, the stone, not the software.", price: #<BigDecimal:ce58380,'0.1337E4',9(18)>, created_at: "2015-03-14 08:15:31", updated_at: "2015-03-14 08:15:31">
(byebug) @item.name
nil
(byebug) @item.description
nil
(byebug) @item.price
nil
答案 0 :(得分:8)
我弄清楚了,我需要做的就是彻底删除attr_accessor
行。 Rails 4在创建ActiveRecord对象时使用强参数,尽管在我的情况下我只是显示它所以我不需要它。
答案 1 :(得分:3)
这是因为您使用attr_accessor
覆盖了ActiveRecord提供的getter方法:
attr_accessor :name, :description, :price
您的意思是使用attr_accessible
吗?