2010-12-08 119 views
0

我有以下的控制器代碼:Ruby on Rails的 - JSON格式

def calculate_quote 

    @mouldings = Moulding.find(params[:id].split(","), :select => 'id, cost, width') 
    @mouldings.collect! do |moulding| 
    { "moulding_id_#{moulding.id}" => { :cost => moulding.cost, :width => moulding.width } } 
    end 
    @material_costs = MaterialCost.all 
    @material_costs.collect! do |material_cost| 
    { material_cost.material.gsub(" ", "_").downcase => { :cost => material_cost.cost_per_square_mm } } 
    end 
    @app_options = AppOption.all 
    @app_options.collect! do |app_option| 
    { app_option.name.gsub(" ", "_").downcase => { :value => app_option.value } } 
    end 

    respond_to do |format| 
    format.json { render :json => { :mouldings => @mouldings, :material_costs => @material_costs, :app_options => @app_options } } 
    end 
end 

而這給了我下面的JSON輸出:

{"mouldings":[{"moulding_id_2":{"cost":"3.1","width":45}},{"moulding_id_4":{"cost":"1.5","width":30}},{"moulding_id_6":{"cost":"2.1","width":50}}],"material_costs":[{"mountboard":{"cost":"0.00000246494303242769"}},{"glass":{"cost":"0.0000032426589803639"}},{"backing_board":{"cost":"0.00000135110790848496"}}],"app_options":[{"vat":{"value":"17.5"}},{"wastage":{"value":"20"}},{"markup":{"value":"3"}}]} 

我想格式化JSON輸出,所以我可以使用jQuery使用以下語法來提取數據:

data.mouldings.moulding_id_2.cost 

如何更改控制器以實現這個?

回答

1

讓我們嘗試重新思考構建數據的方式。在我看來,使用ID作爲對象索引並沒有什麼意義。相反,爲什麼不做這樣的事情:

@mouldings = Moulding.find(params[:id].split(","), :select => 'id, cost, width') 
@mouldings.collect! do |moulding| 
    { :id => moulding.id, :cost => moulding.cost, :width => moulding.width } 
end 

這樣,你應該有一個對象數組,包含你需要的那個成型的所有數據。在jQuery中,你就可以遍歷這個數組,並抓住你需要的所有信息,如:

$.each(data.mouldings, function(index, moulding) { 
    alert("This moulding has an id of " + moulding.id + " and costs " + moulding.cost); 
}); 

我想,這使得很多更有意義比顯式調用:

data.mouldings。 moulding_id_2。成本

如果你想找到確切moulding_id#2,那麼你應該遍歷數據集正如我上面顯示,並執行這樣的檢查:

if (moulding.id == 2) {//do something}; 
+0

我想使用JSON訂閱源中的所有數據在客戶端上執行計算。使用`data.mouldings.moulding_id_2.cost`和`data.material_costs.mountboard.cost`這樣的數據來獲取數據,而不是通過數據做多重循環確實不容易? – freshest 2010-12-08 13:15:14

0

在時刻,線條是單身哈希列表。你希望它是一個單一的散列映射id到詳細散列。