我想使用 in_place_editor_field 编辑对象 temp_thing 的名称。
在我看来,我对我的对象 @temp_thing 使用以下代码:
<%= in_place_editor_field :temp_thing, :name %>
现在更改名称并单击编辑时出现以下错误
Uninitialized constant TempThing
我的模型在类 temp_thing.rb 中定义
class Test::TempThing < ActiveRecord::Base
有人出主意吗?哪些测试可以给我更多提示?我使用萤火虫进行调试。