我正在使用* extjs4。 *我一直困在如何将数据发送到服务器端并同时将其存储到extjs4中的本地存储中。 * 我正在向服务器端发送uname和密码,同时我想将其存储在本地存储中。 *我如何同时执行此操作。
这是我的一些代码: -
Ext.define('Balaee.model.sn.UserModel',{
extend: 'Ext.data.Model',
//idproperty:'userId',//fields property first position pk.
fields: ['userId','firstName','middleName','lastName','languageId','primaryEmail','birthDate','password','securityQuestionId','securityQuestionAnswer','isMale','creationTime','ipAddress','confirmationCode','userStatusId',],
proxy:
{
//type:'ajax',
type:'localstorage',
id:'users',
extraParams:{
hello:'jitu'
},
api:
{
read:'http://localhost/balaee/Balaee/index.php/SocialNetworking/user/AuthenticateLogin',
create:'http://localhost/balaee/Balaee/index.php/SocialNetworking/user/AuthenticateLogin',
//create:'http://localhost/balaee/Balaee/index.php?r=SocialNetworking/user/Registration'
},//end of api
reader:
{
type:'json',
},//end of reader
writer:
{
type:'json',
root:'records',
},//End of writer
}//end of proxy
});
我可以同时使用代理类型作为ajax和本地存储。请给出一些建议..