我有我的軌道4應用程序中的這個ActiveModel。acts_as_api未定義的本地變量與ActiveModel ::模型
class MyModeltest
include ActiveModel::Model
acts_as_api
attr_accessor :title, :content
api_accessible :public do |template|
template.add :title
template.add :content
end
end
我把這種模式形成我的控制器,這返回一個錯誤:
undefined local variable or method `acts_as_api' for ...
所以,可能的下加載ActiveModel打電話acts_as_api? 如果是的話,你能告訴我這是怎麼回事?
在此先感謝
更清楚,我的問題是不是靜態變量acts_as_api,與寶石「acts_as_api」,如果你想使用裏面的常量不被加載ActiveModel
嗨@chris_b,感謝您的回覆,這項工作就像一個魅力。 我已經發布了關於acts_as_api的另一個問題,這是[link](http://stackoverflow.com/questions/19356290/format-xml-with-properties-with-acts-as-api),你能幫我嗎? – cingusoft