1
我有一個簡單的模型:ExtJS的4 - 跨域策略
Ext.define('MovieModel', {
extend : 'Ext.data.Model',
fields : [ {
name : 'Title',
mapping : '@title',
type : 'string'
} ],
proxy : {
type : 'ajax',
url : 'http://www.imdbapi.com/?r=xml&plot=full',
method : 'GET',
reader : {
type : 'xml',
record : 'movie'
}
}
});
但這代碼不支持跨域策略。我怎麼能解決它?
我試過了,出現錯誤'回調未定義' – bontade
@bontade,沒錯。 'callback = callback'不需要。更新了我的答案(查看[demo](http://jsfiddle.net/molecule/LSnda/))。 –
非常感謝@Molecule Man。它幫助了我 – bontade