當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ionic-cache.CacheService類代碼示例

本文整理匯總了TypeScript中ionic-cache.CacheService的典型用法代碼示例。如果您正苦於以下問題:TypeScript CacheService類的具體用法?TypeScript CacheService怎麽用?TypeScript CacheService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了CacheService類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: getAppointments

  public getAppointments(config:IModuleConfig, token, forceReload?): Observable<AppointConfig> {

    var url = config.moodleServiceEndpoint;
    var courseID = config.courseID;
    var accessToken = config.authorization.credentials.authHeader.accessToken;


    var today = new Date();
    var oneYearLater = new Date();
    oneYearLater.setFullYear(today.getFullYear()+1);

    let params:HttpParams = new HttpParams()
      .append("wstoken",                token)
      .append("wsfunction",             "local_reflect_get_calendar_entries")
      .append("moodlewsrestformat",     "json")
      .append("options[userevents]",    "0")
      .append("options[siteevents]",    "0")
      .append("options[timestart]",      Math.floor(today.getTime() / 1000).toString())
      .append("options[timeend]",        Math.floor(oneYearLater.getTime() / 1000).toString())
      .append("options[ignorehidden]",   "1")
      .append("courseID",                courseID);

    let headers:HttpHeaders = new HttpHeaders()
      .append("Authorization", accessToken);

    let request = this.http.get<AppointConfig>(url, {headers:headers,params:params});

    if (forceReload) { this.cache.removeItem("cachedEvents"); }

    return this.cache.loadFromObservable("cachedEvents", request);

  }
開發者ID:University-of-Potsdam-MM,項目名稱:ReflectUP,代碼行數:32,代碼來源:event-provider.ts

示例2:

 this.platform.ready().then(() => {
   this.cache.setDefaultTTL(60 * 60 * 2);     // 2h caching
   this.cache.setOfflineInvalidate(false);     // keep cached results when device is offline
   if (this.platform.is("cordova")) {
     this.splashScreen.hide();
     this.statusBar.styleDefault();
     this.storage.get("hiddenCards").then(array => {
       if (array == undefined) {
         this.storage.set("hiddenCards", ["-1"]);
       }
     });
     this.storage.get("scheduledEvents").then(array => {
       if (array == undefined) {
         this.storage.set("scheduledEvents", ["-1"]);
       }
     });
   }
 });
開發者ID:University-of-Potsdam-MM,項目名稱:ReflectUP,代碼行數:18,代碼來源:app.component.ts

示例3: getAnsweredQuestions

  public getAnsweredQuestions(config:IModuleConfig, token, forceReload?): Observable<QuestionConfig> {

    var url = config.moodleServiceEndpoint;
    var courseID = config.courseID;
    var accessToken = config.authorization.credentials.authHeader.accessToken;

    let params:HttpParams = new HttpParams()
      .append("wstoken",              token)
      .append("wsfunction",           "local_reflect_get_completed_feedbacks")
      .append("moodlewsrestformat",   "json")
      .append("courseID",             courseID);

    let headers:HttpHeaders = new HttpHeaders()
      .append("Authorization", accessToken);

    let request = this.http.get<QuestionConfig>(url, {headers:headers,params:params});

    if (forceReload) { this.cache.removeItem("cachedCompletedQuestions"); }

    return this.cache.loadFromObservable("cachedCompletedQuestions", request);
  }
開發者ID:University-of-Potsdam-MM,項目名稱:ReflectUP,代碼行數:21,代碼來源:question-provider.ts

示例4: performLogout

  /**
   * performLogout
   *
   * unsets current session, thus logging the user out
   */
  performLogout() {
    if (this.platform.is("cordova")) {
      if (this.config) {
        this.pushProv.unsubscribeToPush(this.config);
        this.storage.set("config", null);
      }
    } else { this.storage.set("config", null); }

    this.cache.clearAll();
    this.storage.set("session", null);
    this.storage.set("pushRegistered", false);
    this.navCtrl.setRoot(SelectModulePage);
  }
開發者ID:University-of-Potsdam-MM,項目名稱:ReflectUP,代碼行數:18,代碼來源:logout.ts


注:本文中的ionic-cache.CacheService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。