在我的Rails应用程序中,我有两个模型,Estimate和Client,它们都具有与State的belongs_to关系(如美国各州).
如果我创建一个这样的简单哈希:
properties = {:state => State.first}
…我可以在Rails控制台中构建一个客户端,如下所示:
c = Client.new(properties)
…正如预期的那样,它显示的state_id为1.
但是,如果我尝试使用Estimate,就像这样:
e = Estimate.new(properties)
…它永远不会设置state_id,所以我无法保存关联.
Estimate和Client的表具有相同的state_id列(int 11).这种关联是一样的. State对象是一样的.
什么可能导致这种差异?
更新
Misha指出,这个问题是attr_accessible.我们发现的另一个症状是Estimate.state = State.first返回NoMethodError:undefined method state =
最佳答案 您是否在Estimate模型中设置了attr_accessible?如果是这样,状态可能无法访问,只能像这样设置:
e = Estimate.new
e.state = State.first
更新
请注意,state =是实例方法,而不是类方法.
这不起作用:
Estimate.state = State.first
这确实有效:
e = Estimate.new
e.state = State.first