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


TypeScript react-router.hashHistory類代碼示例

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


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

示例1: navigateToRoute

function navigateToRoute(navigationInfo: NavigationInfo){
  if(navigationInfo.succeeded && navigationInfo.successNavigationRoute) {
      hashHistory.push(navigationInfo.successNavigationRoute);
  } else if(navigationInfo.errorNavigationRoute) {
      hashHistory.push(navigationInfo.errorNavigationRoute);
  }
}
開發者ID:Lemoncode,項目名稱:react-typescript-samples,代碼行數:7,代碼來源:navigationMware.ts

示例2: handleServerError

export function handleServerError(response: Response, dispatch: Function, failureAction: Function, customErrorMessage: string = null) {
    dispatch(failureAction());
    dispatch(invalidateError());
    dispatch(setError(response.status, response.statusText, customErrorMessage));

    hashHistory.push("/error");
}
開發者ID:n1ghtmare,項目名稱:Kauntr,代碼行數:7,代碼來源:ErrorActions.ts

示例3: push

 /**
  * 頁麵跳轉
  */
 static push (url){
     if (url.indexOf('http') != -1) {
         window.location.href = url;
         return false;
     }
     hashHistory.push(url);
 }
開發者ID:ivycen,項目名稱:typescript-react-redux-react-router,代碼行數:10,代碼來源:Tool.ts

示例4: AppReducer

export default function AppReducer(state = AppState, action) {
    switch (action.type) {
        case 'router-open':
        if (state.path!=action.path) {
            hashHistory.push(action.path);
            return Object.assign({}, state, { path: action.path });
        }
            return state;
        default:
            return state;
    };
}
開發者ID:jiasaichao,項目名稱:app,代碼行數:12,代碼來源:routerReducer.ts

示例5: dispatch

 DataSource.students.update(editedStudent).then(updatedStudent => {
     dispatch(commonActionCreators.finishTalkingToTheServer());
     hashHistory.push('/students');
     toastr.success('Student updated');
 });
開發者ID:danilobjr,項目名稱:crud-react-redux-ts,代碼行數:5,代碼來源:actions.ts

示例6: dispatch

 .then(() => {
     dispatch(loginSuccess());
     hashHistory.push(typeof returnUrl !== "undefined" ? returnUrl : "/");
 })
開發者ID:n1ghtmare,項目名稱:Kauntr,代碼行數:4,代碼來源:AuthenticationActions.ts

示例7: dispatch

 .then(json => {
     dispatch(createCountdownSuccess());
     hashHistory.push(`/countdown/${json.Id}`);
 })
開發者ID:n1ghtmare,項目名稱:Kauntr,代碼行數:4,代碼來源:CountdownActions.ts


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