我正在做dojo,我是初学者。好吧,我想创建一个使用 ajax (dojo.xhrGet) 从 json 文件检索的数据创建一个 dojo ItemFileReadStore,它可用于填充组合框。我试过了,但没有成功!谁能指导我如何调用 json 文件,然后使用数据填充组合框!
var _getPlacetypes = function(){
dojo.xhrGet({
url: "place_types.json",
handleAs: "json",
timeout: 5000,
load: function(response, args) {
console.log(response);
},
error: function(error_msg,details) {
PropertyMap.handleError(error_msg, details);
}
});
}
var myStore = new dojo.data.ItemFileReadStore({
jsId:data,
url: "place_types.json",
});
我正在使用这样的东西!这是正确的方法吗?
谢谢
问候 !