1

我在 sencha touch 2 中创建了一个 ajax 请求,当我收到一条成功消息时,如何将我的返回值设置为会话,还请告诉我一种可以从会话中获取值的方法。

 submitLoginForm: function() {
    var form = this.getLoginForm().getValues();

    Ext.Ajax.request({
        url: '../../authenticate.php',
        method: 'POST',

        params: {
            email: form.email,
            password: form.password
        },

        success: function(response) {
            var json = Ext.decode(response.responseText);
            if(json.message == 'success') {
                Ext.Msg.alert('Login Success.....');
                //Here i want to store return data in session
            } else {
                Ext.Msg.alert('Invalid Login Or Password.....');
            }
        },

        failure: function(response) {
            Ext.Msg.alert('The request failed.....');
        }
    });
},
4

1 回答 1

1

在成功响应时,使用 HTML5 本地存储来设置和获取会话变量:

var sessionObject = { 'var1': 1, 'var2': 2, 'var3': 3 };

// Put the session object into storage
localStorage.setItem('sessionObject ', JSON.stringify(sessionObject ));

// Retrieve the session  object from storage
var sessionObject = localStorage.getItem('sessionObject ');

console.log('sessionObject : ', JSON.parse(sessionObject ));
于 2012-12-03T18:35:35.267 回答