0

Javascript

ready(function(){
         request.get("json/pie7.json", {
             // Parse data from JSON to a JavaScript object
             handleAs: "json"
         }).then(function(data){
             arrayUtil.forEach(data.items, function(item,i){
                itemArray.push(item.value);
             });
                alert(itemArray)
         },
         function(error){
            alert(error);
         });

});

pie7.json

{
    "title":"JSON Sample Data",
    "items":[{
        "name":"text",
        "value":33
    },{
        "name":"integer",
        "value":100
    },{
        "name":"float",
        "value":5.65
    },{
        "name":"boolean",
        "value":56
    }]
}

这显示错误为:

SyntaxError: JSON.parse: expected property name or '}'

但是当我重命名pie7.json为任何文件名,例如sample.json并将javascript的请求路径更改为相同的名称时,它就没有问题了。
那么,当我将文件名放入 pie7.json 时,为什么会出现错误?

4

1 回答 1

0

我猜 pie7.json 被您的浏览器缓存了。您可以添加preventCache: true到请求对象以防止缓存。

request.get("json/pie7.json", {     
    handleAs: "json",
    preventCache: true
})
于 2013-02-20T11:13:35.050 回答