无法在 Angular 2 打字稿中找到模块 'angular/common'
Unable to find the module 'angular/common' in angular2 typescrtip
我正在尝试 angular 2 中的示例登录表单,但是当我将 'Form_Directives' 导入为
时
import { FORM_DIRECTIVES } from '@angular/common';
它显示错误 angular/common 模块不是 found.My 包含的文件是
<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
我是否遗漏了任何模块,请有人帮忙
@angular/common
是 Angular2 >= RC.0。您问题中的脚本标签来自 Angular2 beta。
这可能适合你:
import { FORM_DIRECTIVES } from 'angular2/common';
我正在尝试 angular 2 中的示例登录表单,但是当我将 'Form_Directives' 导入为
时 import { FORM_DIRECTIVES } from '@angular/common';
它显示错误 angular/common 模块不是 found.My 包含的文件是
<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
我是否遗漏了任何模块,请有人帮忙
@angular/common
是 Angular2 >= RC.0。您问题中的脚本标签来自 Angular2 beta。
这可能适合你:
import { FORM_DIRECTIVES } from 'angular2/common';