0

generator-react-serverから簡単なプロジェクトを作成しました。すべてがうまくいきました。

新しいページと新しいコンポーネントの新しいルートを作成し、hello-world.js (ページとコンポーネント) を home.js に変更しました。

現在、実行中npm startまたはreact-server startサーバーのシャットダウン時に、特定のエラーは返されませんが、次のログが返されます (以前に動作していたときに同じメッセージが既にログに記録されていたことに注意してください)。

2016-10-21T15:44:01.071Z - warning: [react-server-cli.src.logProductionWarnings] PRODUCTION WARNING: the following current settings are discouraged in production environments. (If you are developing, carry on!):
2016-10-21T15:44:01.075Z - warning: [react-server-cli.src.logProductionWarnings] -- Minification is disabled. To enable, set minify to true (--minify at the command-line) or set NODE_ENV=production.
2016-10-21T15:44:01.076Z - warning: [react-server-cli.src.logProductionWarnings] -- Long-term caching is disabled. To enable, set longTermCaching to true (--long-term-caching at the command-line) or set NODE_ENV=production to turn on.
2016-10-21T15:44:01.076Z - info: [react-server-cli.src.logProductionWarnings] NODE_ENV is set to undefined
4

2 に答える 2

1

問題は、routes.jsで定義されたルートがまだ存在しないページ (pageプロパティ) を指していたことです。ルートを解決できませんでした。

ルート.js :

{
  "middleware": [],
  "routes": {
  "Homepage": {
    "path": "/",
    "page": "pages/home.js"
  }
}
于 2016-10-21T22:54:47.173 に答える
0

こんにちは、コードを実行するには、この手順に従う必要があります

ヨーマンをインストールする

npm install -g yo

反応サーバージェネレーターをインストールする

npm install -g generator-react-server

CURRENT ディレクトリに新しい react-server プロジェクトを作成します

よ反応サーバー

新しいアプリを実行する

npm 実行開始

http://localhost:3000にアクセスします

于 2016-10-21T19:15:48.763 に答える