我相对来说是Backbone.js的新手
我有一个JSON像图片显示!
我看到一些与骨干关系有关的答案,但仍然没有得到点!
我如何将此JSON转换为Backbone.js集合/模型?
我更新一个代码,但它不工作像预期!我看不到模特儿:
我的结构是:
[0]:是模型的集合
[clefs] … [Rest]:是模型的集合
(clefs)=> [0] … [9]:是模型(标题包含一个字符串,路径也)
非常感谢!!
编辑(10.01.12):
我的解决方案
window.initModel = Backbone.Model.extend({ defaults: { "title": "","path": "" } }); window.CustomCollection = Backbone.Collection.extend({ model: initModel }); window.Init = Backbone.Model.extend({ url : function(){ return "/api/data.json" },parse: function(response) { clefs = new CustomCollection(); clefs.add(response.clefs); this.set({clefs: clefs}); ..... rests = new CustomCollection(); rests.add(response.rests); this.set({rests: rests}); } });
this也帮我了!
解决方法
我在工作,所以我不能给你一个完全编码的答案,但是要点是,您可以在顶级模型中执行以下操作来实现嵌套模型层次:
var AmericasNextTopModel = Backbone.Models.extend({ initialize: function(){ this.set({ clefs: new ClefCollection(this.get('clefs')),accidentals: new AccidentalCollection(this.get('accidentals')),notes: new NoteCollection(this.get('notes')),rests: new RestCollection(this.get('rests')) }); } });
我不使用骨干关系,所以我不能给你一个答案.
你在制作在线乐谱查看器/编辑器吗? D酷我很乐意在完成后看到它.