时间:2021-05-28
复制代码 代码如下:
Ext.state.CookieProvider = function(config){
Ext.state.CookieProvider.superclass.constructor.call(this);
this.path = "/";
this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
this.domain = null;
this.secure = false;
Ext.apply(this, config);
this.state = this.readCookies();
};
Ext.state.CookieProvider = function(config){
Ext.state.CookieProvider.superclass.constructor.call(this);
this.path = "/";
this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
this.domain = null;
this.secure = false;
Ext.apply(this, config);
this.state = this.readCookies();
};
我们可以通过设定expires的值来改变默认的存储时间,比如:
复制代码 代码如下:
this.expires: new Date(new Date().getTime()+(1000*60*60*24*365)), //一年
this.expires: new Date(new Date().getTime()+(1000*60*60*24*365)), //一年
或者我们可以在开始位置的Ext.onReady函数中加上以下的代码
复制代码 代码如下:
Ext.state.Manager.setProvider(
new Ext.state.CookieProvider({
expires: new Date(new Date().getTime()+(1000*60*60*24*365)), //一年
}));
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
以下操作默认客服端以及开启js支持,noscript情况请自行编写代码实现首先贴上展示图片:默认状态:出错状态:等待状态:工作流程:在用户登录提交之前,在客户端
代码在ext里的src\core\ext.js下最新的ext3.0beat1的代码如下:复制代码代码如下:ua=navigator.userAgent.toLo
8、Ext.js的写类方式这里用的是Extcore3.0,Ext中用Ext.extend来定义一个类(当然它更多用来扩展一个类),Ext整个框架各种控件如Pan
暑假还搞了ext4的webdesktop,更多的也是javascript的东西。对于javascript,以前就只会document.getElementByI
EXT的全部js是比较大的,一个ext-all-debug.js就达2m多,它的压缩版(去掉js中的换行及空格),也达600多k,这对于在网速不太快的时,下载j