0

我想使用 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

有人出主意吗?哪些测试可以给我更多提示?我使用萤火虫进行调试。

4

1 回答 1

0

它一定是什么,因为模型是命名空间的......你试过以下吗?

<%= in_place_editor_field 'Test::TempThing', :name %>
于 2011-09-06T12:10:36.057 回答