我想发送计数值,以计算我在 ROR 中使用竖起大拇指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 发送计数值,因为我想在客户端显示该计数值。