我生成 JSON 如下:
def suggest_gems
@allgems = RubyGem.where("name like ?", "%#{params[:q]}%")
respond_to do |format|
format.json { render :json => @allgems.to_json }
end
end
但是,RubyGem 表非常大,其中包含描述、链接和创建、更新的值。如何仅在生成的 JSON 中输出名称和 ID 以减少加载时间?谢谢。