如何从原始数据(数据库数据)创建自定义JSON
我在巡回控制器中创建了一个show方法,并希望将数据库中的数据呈现为json格式。 这是巡回控制器的定义
class ToursController < ApplicationController
respond_to :json
def show
@tourcategory = Tourcategory.find(params[:id])
@tours= @tourcategory.tours
@tourcategories = Tourcategory.all
render :layout => false
end
end
这是show.html.haml视图的定义
%h3 Tour for #{@tourcategory.title}
= @tours.to_json
这段代码的输出如下:
[{"content":"dscfds","created_at":"2015-12-12T09:48:32Z","elementid":"test1","id":8,"jobid":2,"next_button_title":"next","priority":23,"title":"test1","updated_at":"2015-12-12T09:48:32Z"}]
但我只想呈现这种json格式的数据,如下所示:
var tour = {
id: "tour",
steps: [
{
title: "abc",
content: "Click this Button.",
target: "#abc",
placement: "bottom",
showNextButton: false,
skipIfNoElement : true
},
目前还不清楚你想要实现什么,但在我看来,你想从你的@tours
提取某些属性并将它们分组为数组,如果这样的话你可以这样做:
(在t.attributes.slice()
列出你想要的所有属性)
tour = { id: "tour", steps: @tours.map { |t| t.attributes.slice("title", "content", "target") } }
如果你想将你的密钥从蛇(下划线)转换为骆驼格式:
tour = {
id: "tour",
steps: @tours.map {|t| t.attributes.slice("title", "content").map {|k,v| [k.camelize(:lower), v]}.to_h}
}
链接地址: http://www.djcxy.com/p/47167.html
上一篇: how to create a custom json from raw data (database data)