【发布时间】:2013-06-15 05:00:42
【问题描述】:
我想发送计数值,以计算我在 ROR 中使用 thumbs up gem 的帖子。
现在我想在 json 中发送计数,投票作为 def show 中的发布操作
def index
@posts = Post.all
respond_with(@posts) do |format|
format.json { render json: @post_names = {:post => @posts.as_json(:only=> [:content, :title]) } }
end
end
我想使用 json 发送计数值,因为我想在客户端显示该计数值。
【问题讨论】:
标签: ruby-on-rails ruby json ruby-on-rails-3 get