私は反応が新しく、reactjs + expressjs + nodejsに基づいてサンプルアプリケーションを開発しようとしていますが、https://github.com/lmammino/judo-heroesが参照していますが、サードパーティ用のWebhook APIを作成しようとしていますアプリケーション、反応ルータは404ページとして私を示した。リアクタールーターとnodejsのAPIの比較
server.js
import routes from './routes';
...
...
var webhook = require('./routes/webhook');
app.use('webhook', webhook);
とroutes.js
'use strict';
import React from 'react'
import { Route, IndexRoute } from 'react-router'
import Layout from './components/Layout';
import IndexPage from './components/IndexPage';
import NotFoundPage from './components/NotFoundPage';
const routes = (
<Route path="/" component={Layout}>
<IndexRoute component={IndexPage}/>
<Route path="*" component={NotFoundPage}/>
</Route>
);
export default routes;
と私が呼ばれたとき:あったとして、それが<Route path="*" component={NotFoundPage}/>
を実行するために行って、 "ローカルホスト3333/のウェブフック" 404エラーページ。
反応ルータに関連しない個々のAPIとしてウェブフックをエクスポートするにはどうすればよいですか?
助けここhttps://github.com/ReactTraining/react-router/blob/master/docs/API.md#histories
・ホープもっとに関する履歴を読むことができます。 – ppshein