0
リンクの下で与えられたように私は、フォームを作成しようとしました:上記のリンクで角度2のブートストラップフォームを検証サポートで追加するには?
https://angular.io/docs/ts/latest/guide/forms.html
をしてください、ブートストラップトピックの下を見ました。
私は、コード例以下のような
import { bootstrap } from '@angular/platform-browser-dynamic';
import { disableDeprecatedForms, provideForms } from '@angular/forms';
bootstrap(AppComponent, [
disableDeprecatedForms(),
provideForms()
])
としてフォームを輸入してきたが、フォームのインポート中にWebページは、ページ内に404見つかった問題をスローします。
http://localhost:3000/node_modules/@angular/platform-browser-dynamic/platform-browser-dynamic.umd.js
Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:3000/node_modules/@angular/forms/forms.umd.js Failed to load resource: the server responded with a status of 404 (Not Found)
角度1.0.0 rc.1アップデートを使用しています。他のバージョンへのアップグレードがアプリケーションでさらに変更される可能性があるので、私の現在のバージョンでこれらの新しいフォームを使用することをお勧めしますか?
RC4バージョンに更新します。 – Jai
これは現在のバージョンで使用したいですか? –