タグ付けされた質問 「angular8」

6
Angular 8の@ViewChildに新しい静的オプションをどのように使用すればよいですか?
新しいAngular 8ビューの子をどのように構成すればよいですか? @ViewChild('searchText', {read: ElementRef, static: false}) public searchTextInput: ElementRef; 対 @ViewChild('searchText', {read: ElementRef, static: true}) public searchTextInput: ElementRef; どちらが良いですか?static:truevsはいつ使用すべきstatic:falseですか?

6
TypeScriptでのjsonファイルのインポート
JSON次のようなファイルがあります。 { "primaryBright": "#2DC6FB", "primaryMain": "#05B4F0", "primaryDarker": "#04A1D7", "primaryDarkest": "#048FBE", "secondaryBright": "#4CD2C0", "secondaryMain": "#00BFA5", "secondaryDarker": "#009884", "secondaryDarkest": "#007F6E", "tertiaryMain": "#FA555A", "tertiaryDarker": "#F93C42", "tertiaryDarkest": "#F9232A", "darkGrey": "#333333", "lightGrey": "#777777" } .tsxファイルにインポートしようとしています。このために、これをタイプ定義に追加しました: declare module "*.json" { const value: any; export default value; } そして、私はそれをこのようにインポートしています。 import colors = require('../colors.json') そして、ファイルでは、色をprimaryMainとして使用していcolors.primaryMainます。ただし、エラーが発生します。 プロパティ 'primaryMain'はタイプ 'typeof …

5
Angular 8-モジュールの遅延読み込み:エラーTS1323:動的インポートは、「-module」フラグが「commonjs」または「esNext」の場合にのみサポートされます
Angularを7からAngular 8に更新したとき、遅延読み込みモジュールでエラーが発生しました 私は角度アップグレードガイドにあるオプションを試しました 以下の変更を行いました: 前 loadChildren: '../feature/path/sample- tage.module#SameTagModule' 後 loadChildren: () => import('../feature/path/sample- tags.module').then(m => m.CreateLinksModule) エラーTS1323:動的インポートは、「-module」フラグが「commonjs」または「esNext」の場合にのみサポートされます。

5
ジョブ名「..getProjectMetadata」は存在しません
角度をv9に更新しましたが、v8に戻ろうとすると、このエラーが発生します。私はすでに次のことを試しました: アンインストール-global angular / cli angular / cliをアンインストールする 最後のpackage.jsonに戻ります node_moduleフォルダを削除する リポジトリを削除 このエラーは引き続き表示されます。 私のスタックトレースは: An unhandled exception occurred: Job name "..getProjectMetadata" does not exist. See angular-errors.log for further details. angular-errors.log: [error] Error: Job name "..getProjectMetadata" does not exist. at Observable._subscribe (/Front/node_modules/@angular-devkit/core/src/experimental/jobs/simple-scheduler.js:350:23) at Observable._trySubscribe (/Front/node_modules/@angular-devkit/core/node_modules/rxjs/internal/Observable.js:44:25) at Observable.subscribe (/Front/node_modules/@angular-devkit/core/node_modules/rxjs/internal/Observable.js:30:22) at /Front/node_modules/@angular-devkit/core/node_modules/rxjs/internal/util/subscribeTo.js:22:31 at Object.subscribeToResult …

4
ビルド中に、呼び出しの再試行が例外を超えました
例外に直面していますng build(差分読み込み用のES5バンドルを生成しています...) An unhandled exception occured: Call retires were exceeded 使用されているバージョン: Angular-CLI: 8.3.20 角度: 8.2.7 ノード: 12.12.1 ログにも記載されています [error] Error: Call retries were exceeded at ChildProcessWorker.initialize

2
Angular 8と9で「ウィンドウ」とウィンドウの提供と注入の違いは何ですか?
これらのバージョンを使用する2つのAngularプロジェクトがあります。 9.0.0-next.6 8.1.0 バージョン9では、これを使用してwindowオブジェクトを提供および注入しました。 @NgModule({ providers: [ { provide: Window, useValue: window }, ] }) export class TestComponent implements OnInit { constructor(@Inject(Window) private window: Window) } それはうまくいきます。 このアプローチをバージョン8に適用すると、コンパイル中に警告とエラーがスローされました。 警告:TestComponentのすべてのパラメーターを解決できません… 私はこのように単一引用符を使用してそれを解決しました: @NgModule({ providers: [ { provide: 'Window', useValue: window }, ] }) export class TestComponent implements OnInit { constructor(@Inject('Window') private window: …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.