我希望我的 to_json 包含来自控制器的静态方法。
class ApplicationController < ActionController::Base
def self.server_time
Time.now
end
end
我都试过了:
o.to_json(:methods => ApplicationController.server_time)
和
o.to_json(:include => ApplicationController.server_time)
但我得到TypeError:
TypeError: 2013-04-04 08:33:31 +0300 is not a symbol
o 是一个 ActiveRecord 对象