1

我正在使用 Dojo,它是 dojo/data/ItemFileWriteStore 模块来读取本地服务器上的 JSON 数据文件。在我的 .js 文件中,我有

var myDataStore = new ItemFileWriteStore({
    url: "app/data/mydata.json",
    handleAs: "json",
    clearOnClose: true,
    urlPreventCache: true
})

这位于我的返回声明函数的 postCreate 函数中......所以:

 define([
    "dojo/_base/declare",
    "com/cayuse/base/_widget",
    "dojo/text!./templates/myform.html",
    ...    
    "dojo/data/ItemFileWriteStore",
    "dojo/store/DataStore",
    "dojo/store/Observable",
    "dojo/data/ObjectStore",
    "dojo/domReady!"
    ],
    function(declare, widget, template, ..., ItemFileWriteStore, DataStore, 
        Observable, ObjectStore){
        return declare("app.myform", widget, {
            templateString: template,

            postCreate: function(){

                domConstruct.create("link",{
                    type: "text/css",
                    rel: "stylesheet",
                    href: require.toUrl('dojox/form/resources/CheckedMultiSelect.css')
                }, document.getElementsByTagName("head")[0]);

                // data store
                var myDataStore = new ItemFileWriteStore({
                    url: "app/data/mydata.json",
                    handleAs: "json",
                    clearOnClose: true,
                    urlPreventCache: true
                })
                console.log(myDataStore);
            }
        });
    }
);

我可以使用 IFWS 方法将您在上面看到的数据存储访问更改为

var myDataStore = dojo.xhrGet({
    url: "app/data/mydata.json",
    handleAs: "json",
    load: function(data, ioArgs){
         console.log(data);
    }
 });

它找到没有问题的文件。

这太奇怪了!关于这里出了什么问题的任何想法?

更新:这是我正在阅读的文件中的数据。我相信它符合 JSON 格式。如果没有,请告诉我。xhrGet 读得很好。

{ "identifier": "id",
    "label": "firstName",
    "items":[
     {"id":"0","firstName":"Robert","website":"www.barker.com","email":"robert@barker.com","bday":"1928-08-09","color":"Blue","toolkits":["Dojo","Moo"],"sendEmail":["on"],"format":"HTML"},
     {"id":"1","firstName":"Vanna","website":"www.white.com","email":"vanna@white.com","bday":"1968-07-23","color":"Green","toolkits":["Dojo","jQuery"],"sendEmail":["off"],"format":"Text"}
    ]
}
4

3 回答 3

2

ItemFileWriteStore 要求将您的数据结构化为如下所示:

{ identifier: 'abbr',
  label: 'name',
  items: [
    { abbr:'ec', name:'Ecuador',           capital:'Quito' },
    { abbr:'eg', name:'Egypt',             capital:'Cairo' },
    { abbr:'sv', name:'El Salvador',       capital:'San Salvador' },
    { abbr:'gq', name:'Equatorial Guinea', capital:'Malabo' },
    { abbr:'er', name:'Eritrea',           capital:'Asmara' },
    { abbr:'ee', name:'Estonia',           capital:'Tallinn' },
    { abbr:'et', name:'Ethiopia',          capital:'Addis Ababa' }
]}

那就是“标识符”是您的“ID”字段,“标签”是您的“标签”字段,然后是一个名为“项目”的数组中的所有对象。

您可以在 ItemFileWriteStore 的文档中查看它。如果您的 JSON 数据没有这样的结构,那么您最终可能会使用 IFWS 读取文件而实际上没有读取任何数据。

dojo 1.7 中的其他存储实现不需要这种结构,例如内存存储,您可以结合其他文件读取技术来实现相同的目的。

于 2012-08-02T17:19:26.440 回答
0

如果您的代码与您在上面发布的完全相同,那么解释器可能不喜欢您从 ItemFileWriteStore 分配中省略分号的事实。尝试添加';' 如下:

            // data store
            var myDataStore = new ItemFileWriteStore({
                url: "app/data/mydata.json",
                handleAs: "json",
                clearOnClose: true,
                urlPreventCache: true
            });
            console.log(myDataStore);
于 2015-02-09T21:16:48.073 回答
0

尝试使用 dojo.data.ItemFileReadStore 来读取 json 数据文件,而不是 dojo/data/ItemFileWriteStore。

请注意,dojo.data.ItemFileWriteStore 用于写入 json 数据。

于 2013-01-02T17:57:20.903 回答