从json文件填充集合

时间:2011-07-19 08:54:36

标签: json backbone.js

我想从json文件填充一个集合,该文件除了数据项数组外还有其他数据。我开始知道集合上的解析函数应该用于返回数据项的数组,但是我的集合没有从json文件中填充。当我在firebug中使用解析方法保留断点时,控件根本就不会出现。

这是我的代码

        var m1 = Backbone.Model.extend({                
                title:'Title1',
                tag:'html',
                date: 'Today'
        })
        cll = Backbone.Collection.extend({
            url:'/combodata.json?uu',
            model:m1,
            parse:function(res){                    
                return res.items;
            }
        });

        ci = new cll();
        ci.fetch();

json响应将是这样的

{
'identifier': 'title',
items:[
    {title:'A', tag:"htmlcss", date:'today'},
    {title:'AA', tag:"htmlcss", date:'today'},
    {title:'B', tag:"htmlcss", date:'today'},
    {title:'C', tag:"htmlcss1", date:'today'}
]}

请指出我错在哪里。

1 个答案:

答案 0 :(得分:8)

不是JSON的专家,但我尝试在jsonlint.com验证您的JSON。它在第2行失败

Parse error on line 1:
{    'identifier': 'title
-----^
Expecting 'STRING', '}'

请验证您的JSON是否有效。

刚刚检查了另一个网站以获取JSON验证http://jsonformatter.curiousconcept.com/,似乎字符串标识符应该与双引号而不是单引号一起使用。用双引号替换单引号可能会有所帮助。