gpt4 book ai didi

sencha-touch-2 - sencha touch2 登录示例

转载 作者:行者123 更新时间:2023-12-04 05:36:49 26 4
gpt4 key购买 nike

我需要一个跨域用户登录请求实例,请帮帮我,谢谢!!
我的代码

Ext.data.JsonP.request({
url: 'http://25.30.2.3:8080/newvbo/applyaction!longin',
params: {
username:'13881901678',
password:'111111',
},
success: function(response, opts) {
alert('1');
},
failure: function(response, opts) {
alert('2');
}
});

我的问题是,我没有收到服务器返回的值,我错了吗?

最佳答案

你可以试试这个

Ext.Ajax.request({
method:'GET',
contentType:'application/json; charset=utf-8',
dataType:'json',
url:'http://........Login',
disableCaching: false,
withCredentials: true,
useDefaultXhrHeader: false,
callbackKey: 'callback',

params: {
EmailId:Ext.getCmp('usernametwoway').getValue(),
Password:Ext.getCmp('loginpasswordtwoway').getValue(),
},


success:function(response)
{
console.log(response);
var res = response.responseText;


var jsonarr = Ext.decode(response.responseText);
console.log(jsonarr);
var myres = jsonarr[0].Result;

console.log(myres);
switch(myres)
{

case '1':
console.log("Registration response is successfully");

Ext.Viewport.setActiveItem({xtype:'passengerdetailstwoway'});

break;

case '0':
console.log("Failed");
Ext.Msg.alert("Error","Login Failed",Ext.emptyFn);
break;
根据响应,您可以指定 Switch case..

关于sencha-touch-2 - sencha touch2 登录示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11824789/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com