我是ExtJS的新手,现在我需要使用保存在google drive或dropbox中的json文件在商店中加载数据。是否可以在不使用任何服务器端语言的情况下实现它。
我现在正在使用jsonp。这是我的代码
Ext.define('POC.store.nodeData',{
extend:'Ext.data.Store',
alias: 'store.node',
model: 'POC.model.NodeModel',
// defining storeId for accessing through store manager
config:{
storeId: 'nodes'
},
// defining proxy with configuration settings
proxy: {
type: 'jsonp',
url: 'http://172.16.60.121:1841/fewNodes.json',
reader: {
type: 'json'
},
},
// autoLoad enabled
autoLoad: true,
});
文件链接为:https://www.dropbox.com/s/9wao2694lesss3h/fewNodes.json