2014-04-21 92 views
0

我試圖定義從一個JSON對象燼的模型不符合JSON API標準定義的模式。如果我將其路線定義爲Emberjs:在路線

export default Ember.Route.extend({ 
    model: function(){ 
     var url = "http://website.com/prequalification"; 

     return Ember.$.getJSON(url).then(function(data) { 
      return data.collection.template; 
     }); 
    } 
}); 

然後我如何訪問模板中的數據。我試圖避免編寫自定義適配器來處理JSON。我在這裏走錯路了嗎?

感謝

回答