我正在尝试在respond_to
JSON哈希中包含一个虚拟属性/方法.
模型(employee.rb)
attr_reader :my_method def my_method return "foobar" end
控制器(employees_controller.rb)
respond_to :json def index @employees = Employee.all respond_with(:data => @employees,:total => Employee.all.count) end
重要的是,我将“数据”作为收集“雇员”的json根,并在哈希中包括“总计”.这样做很好,并返回了所有员工的完美JSON结果和总价值.
我的问题是:如何在JSON响应中的employees哈希中包含每个员工的虚拟属性“my_method”?
谢谢你的时间!
解决方法
这对我有用
Employee.rb
def as_json(options={}) super.as_json(options).merge({:my_method => my_method}) end
感谢cmason指出我正确的方向.欢迎任何其他解决方案.