2

私のアプリでは、react-router v2 を使用しています - https://github.com/reactjs/react-router

のリダイレクトに問題がありますonEnter:

いくつかのコンポーネント

static async onEnter({ flux }, nextState, replace, callback) {
    const token = flux.getStore('auth').getAccessToken();
    if (!token) {
        replace('/login');
        return callback();
    }
}

私はサーバー側のレンダリングを使用しており、このガイドを使用しました - https://github.com/reactjs/react-router/blob/master/docs/guides/ServerRendering.md#async-routesを使用する必要があると書かれていますmatchクライアントでも:

client.js

RouterMatch({history: browserHistory, routes: patchedRouteHooks(routes)}, (error, redirectLocation, renderProps) => {
    // renderProps are `undefined` when replace from onEnter hook
    ReactDOM.render(
        <Router {...renderProps} createElement={passFluxToComponent} />,
        mountNode,
    );
});

ルート.js

const routes = (
    <Route path="/" component={AppHandler}>
        <Route path="/" component={AuthHandler}>
            <Route path="login(/)" component={LoginFormHandler} />
            <Route path="signup(/)" component={SignupFormHandler} />
            <Route path="resetpassword(/)" component={ResetPasswordFormHandler} />
            <Route path="changepassword(/)" component={ChangePasswordFormHandler} />
            <Route path="logout(/)" component={LogoutHandler} />
        </Route>

        <Route path="/" component={AppLayoutHandler}>
            <Route path="/" component={EnsureAuthHandler}>
                <Route path="me/favorites(/)" component={FavoritePropertiesHandler} />
                <Route path="me/settings(/)" component={UserSettingsHandler} />
                <Route path="dashboard(/)(:status)(/)" component={DashboardFlowHandler} />
                <IndexRoute component={DashboardFlowHandler} />
            </Route>

            <Route path="/s(/)" component={SearchResultsHandler} />
            <Route path="/user/:id(/)" component={UserDetailsHandler} />
            <IndexRoute component={EnsureAuthHandler} />
        </Route>

        <IndexRoute component={AppLayoutHandler} />
    </Route>
);

export default routes

patchRouteHooks.js

function patchRouteHooks (Route, patchData = {}) {
    const { props: { children, component } } = Route;

    function _patchChildren (children) {
        if (Array.isArray(children)) {
            return React.Children.map(children, ChildRoute => patchRouteHooks(ChildRoute, patchData));
        } else {
            return patchRouteHooks(children, patchData);
        }
    }

    return {
        ...Route,
        props: {
            ...Route.props,
            onEnter: component && component.onEnter && function (...args) {
                component.onEnter.call(null, patchData, ...args);
            },
            onLeave: component && component.onLeave && function (...args) {
                component.onLeave.call(null, patchData, ...args);
            },
            children: children ? _patchChildren(children) : null
        }
    };
}

export default patchRouteHooks;

onEnter で置き換えた後、renderProps を受け取るundefinedと、コンソールに警告が表示され、アプリが壊れます。

ここに画像の説明を入力

私が間違っていることは何か提案はありますか? ありがとう!

4

1 に答える 1

0

おっしゃる通り、renderProps はundefined.

renderProps を渡す代わりに、おおまかにあなたの場合になるようなことをしました: ReactDOM.render( <Router history={browserHistory} routes ={patchedRouteHooks(routes)} createElement={passFluxToComponent} />, mountNode, );

マッチが非同期で行っていることを完全に理解することができず、それなしで完全に機能するアプリ (サーバー レンダリングを使用) を持っているため、使用をやめました :)

現在の実装を維持し (一致あり)、フォールバック レンダーを

if (redirectLocation) { ...my proposition } else { ...your implementation }

于 2016-07-06T14:20:02.280 に答える