如何在Sencha Touch中进行GET请求呼叫?

时间:2013-09-30 12:06:47

标签: json extjs

我的代码是这样的:我想将用户名和密码传递给将返回JSON输出的get请求API。我正在访问托管在其他域中的Web服务。

Ext.data.JsonP.request({
    url: serviceUrl,
    callbackKey: 'callback',
    params: {
        username: username,
        password: password
    },
    success: function(response, opts){
        var output = result.responseText;
        var parsedJSON = Ext.JSON.decode(output)

        if((parsedJSON.errorMessage)== null){
            Ext.Msg.alert('Authenticated');

        }
        else{
            Ext.Msg.alert('Not Authenticated');
        }

    },
    failure: function (result, request) {
        Ext.Msg.alert('Failure'+result.responseText);
    }
});

0 个答案:

没有答案