我当前的 json 输出是“id”:3,“name”:“test”,我需要 3 为“3”。
我将如何在 Rails 中执行此操作?
def search
@tags = Tag.where("name like ?", "%#{params[:q]}%")
respond_to do |format|
format.json { render :json => @tags.to_json(:only => [:id, :name]) }
end
end