我开始使用Sencha Touch进行编码,我想做同样的事情,但是距离很远:
MyApp.search = new Ext.data.TreeStore({
model: 'ListItemSearch',
proxy: {
type: 'ajax',
url: 'search.json',
reader: {
type: 'tree',
root: 'items'
}
}
});
它工作正常,但我想和JSONP保持距离:
MyApp.search = new Ext.data.TreeStore({
model: 'ListItemSearch',
proxy: {
type: 'ajax',
url: 'http://www.test.com/search.json',
reader: {
type: 'tree',
root: 'items'
}
}
});
我不知道如何对此进行编码,我尝试过的示例也无效。
我该怎么做?