javascript Ext JS 상태 기본 저장 시간

1251 단어 자바 scriptExtJS

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)), //
}));

좋은 웹페이지 즐겨찾기