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


TypeScript NgRedux.getState方法代碼示例

本文整理匯總了TypeScript中ng2-redux.NgRedux.getState方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript NgRedux.getState方法的具體用法?TypeScript NgRedux.getState怎麽用?TypeScript NgRedux.getState使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ng2-redux.NgRedux的用法示例。


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

示例1: updateQueryParams

 updateQueryParams() {
   this.router.navigate(['search'], {
     queryParams: {
       term: this.ngRedux.getState().search.get('term'),
       page: this.ngRedux.getState().search.get('page'),
     }
   });
 }
開發者ID:andrewlo,項目名稱:angular2-redux-giphy,代碼行數:8,代碼來源:search.page.ts

示例2: getID

 getID() {
   let currState = this.ngRedux.getState();
   if (currState.login.userData !== null) {
     return currState.login['userData'].authid;
   }
   return undefined;
 }
開發者ID:microwave-taco,項目名稱:taco-tuts,代碼行數:7,代碼來源:app.component.ts

示例3: extractUser

    extractUser(res: Response): IUser{
        let user = res.json().data;
        let state = this.store.getState();
        let url = state.lastVisitedUrl;

        this.store.dispatch(updateUser(user));
        this.router.navigate([url]);

        return user;
    }
開發者ID:jsruvi,項目名稱:deberc_react,代碼行數:10,代碼來源:auth.service.ts

示例4: options

  private get options() {
    const state = this.ngRedux.getState();

    const token = state == null || state.session == null
      ? null
      : state.session.get('token');

    const headers = new Headers({
      'Content-Type': 'application/json',
      'Authentication-Token': token
    });

    return { headers };
  }
開發者ID:bennett000,項目名稱:angular2-chat,代碼行數:14,代碼來源:index.ts

示例5: acceptSession

  acceptSession(session) {
    const teacherID = this.ngRedux.getState().login.userData.authid;
    const studentID = session.studentauthid;

    this.socket.acceptSession(teacherID, studentID);
  }
開發者ID:microwave-taco,項目名稱:taco-tuts,代碼行數:6,代碼來源:teacher-socket.service.ts

示例6: hasPendingRequest

  hasPendingRequest(teacher) {
    const teachers = this.ngRedux.getState().sessionRequest.requests
      .map(request => request.teacherauthid);

    return teachers.indexOf(teacher.authid) > -1;
  }
開發者ID:microwave-taco,項目名稱:taco-tuts,代碼行數:6,代碼來源:teacher-view.component.ts

示例7: increment

 increment() {
   this.ngRedux.dispatch({type:'INCREMENT'});
   this.counter = this.ngRedux.getState().counter;
  
 }
開發者ID:anil0090,項目名稱:angularredux,代碼行數:5,代碼來源:app.component.ts

示例8:

   ngRedux.subscribe(() => {
     let state = ngRedux.getState();
     console.log(state);
 })
開發者ID:anil0090,項目名稱:angularredux,代碼行數:4,代碼來源:app.component.ts

示例9: incrementIfOdd

  incrementIfOdd() {
    const { counter } = this.redux.getState();

    if (counter % 2 === 0) return;
    this.redux.dispatch({ type: INCREMENT_COUNTER });
  }
開發者ID:ShivKamal,項目名稱:ngCourse2,代碼行數:6,代碼來源:counter-actions.ts

示例10: getLastVisitedUrl

 getLastVisitedUrl(){
     let state = this.store.getState();
     return state.lastVisitedUrl;
 }
開發者ID:jsruvi,項目名稱:deberc_react,代碼行數:4,代碼來源:auth.service.ts


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