我有一个 Sencha Touch 2 应用程序。
目前,我使用 JsonP 将身份验证信息发送到服务器 API (POST),服务器使用 Json 对象(作为 JsonP 传递)进行响应。服务器也发送一个 Cookie
重新加载应用程序时,不会保留 Cookie。
我需要在 Sencha Touch 应用程序中维护 cookie……知道怎么做吗?
谢谢西蒙妮
Ext.data.JsonP.request({
url: AshtonConfigurations.logOn,
callbackKey: 'callback',
method: 'POST',
//-----------------
withCredentials: true,
useDefaultXhrHeader: false,
//-----------------
params: {
UserName: username,
Password: password,
RememberMe: 'true',
DeviceTokenNotification: pushIdToken
},