0

Sencha 新手,我正在使用以下代码尝试获取 JSON 数据。出于某种原因,它返回 null,但我知道 URL 正在返回值,因为我在另一个项目中使用它。

// Make the JsonP request
        Ext.data.JsonP.request({
            url: 'http://xxx.azurewebsites.net/login',
            crossDomain: true,
            type: "GET",
            dataType: "json",
            callbackKey: 'jsoncallback',
            callback: function(successful, data ) {
                alert( JSON.stringify(data) );
            }
        });

有人可以指出我缺少什么。

4

1 回答 1

1

你需要添加 scope:this 属性来调用回调函数,试试这样。

Ext.data.JsonP.request({
    url: 'http://xxx.azurewebsites.net/login',
    crossDomain: true,
    type: "GET",
    dataType: "json",
    callbackKey: 'callback',
    scope: this,
    callback: function (response, value, request) {
        var result = Ext.decode(response.responseText);
        alert(result.propertyName);
    }
});
于 2013-08-02T11:26:50.790 回答