我的设置:Rails 2.3.10,Ruby 1.8.7
我尝试从JSON调用中访问模型中的虚拟属性,但没有成功。假设我有以下模型和控制器代码
class Product
name,
description,
price,
attr_accessor :discounted_price
end
class Price
discount
end
class ProductsController
def show
@product = Product.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render :json => @product }
end
end
end
我喜欢的是让JSON输出还包括每次调用实时计算的Product.discounted_price,即discounted_price = Price.discount * Product.price。有没有办法实现这个目标?
解: 在dmarkow的初步帮助下,我发现了,我的实际情况比上面的例子更复杂。我可以做这样的事情,在Product模型中,添加一个getter方法
def discounted_price
...# do the calculation here
end
在JSON调用中执行此操作
store = Store.find(1)
store.as_json(:include => :products, :methods => :discounted_price)
答案 0 :(得分:25)
您可以使用to_json
参数运行:methods
以包含这些方法的结果。
render :json => @product.to_json(:methods => :discounted_price)
答案 1 :(得分:0)
看看gem RABL,如此railscast所示:
http://railscasts.com/episodes/322-rabl?view=asciicast
RABL为您制作的json提供了精细的控制,包括收藏和儿童。