0
私はnode.js
サーバとangular2
クライアント側のアプリケーションを作成していますが一致しませんでした。クライエントサイドのアプリは完全に正常に動作しているようです。つまり:エラー:「アプリ」は、任意の要素
- 私のすべてのリクエストには、適切な回答が得られます。
- アプリケーションが読み込まれ、期待どおりに動作します。
が、私は、端末でこのエラーを取得する:webpack
またはhttp-server
を中断しない
Error: The selector "app" did not match any elements
at DomRenderer.selectRootElement (/home/mu-user/Projects/my-app/dist/server/index.js:27126:23)
at selectOrCreateRenderHostElement (/home/mu-user/Projects/my-app/dist/server/index.js:15687:32)
at AppView._View_AppComponent_Host0.createInternal (/AppModule/AppComponent/host.ngfactory.js:12:16)
at AppView.create (/home/mu-user/Projects/my-app/dist/server/index.js:50916:21)
at ComponentFactory.create (/home/mu-user/Projects/my-app/dist/server/index.js:36656:36)
at ApplicationRef_.bootstrap (/home/mu-user/Projects/my-app/dist/server/index.js:23313:40)
at /home/mu-user/Projects/my-app/dist/server/index.js:23222:89
at Array.forEach (native)
at Object.Call (/home/mu-user/Projects/my-app/node_modules/es6-shim/es6-shim.js:307:14)
at Array.forEach (/home/mu-user/Projects/my-app/node_modules/es6-shim/es6-shim.js:1313:17)
。
質問はなぜ私はこれに直面し、それを解決する方法ですか?
いくつかのメインファイルを含めることはできますか? index.html、ブートストラップファイル、モジュールのように。 – echonax
これはあなたのアプリが主なコンポーネントについて知らないという点で、おそらくngModule関連の問題です。 –
@echonaxこのプロジェクトには50以上のコンポーネントが含まれていますが、コード全体を追加することはほとんどできませんでしたが、より古いバージョンを得るために古いコミットに戻すと、エラーがなくなっていました。それはどちらも役に立たなかった。 – Reyraa