无法找到模块' angular / common'在angular2 typescrtip中

时间:2016-06-16 05:59:13

标签: typescript angular npm node-modules angular2-forms

我正在尝试使用角度2的示例登录表单,但是当我导入' Form_Directives'如

 import { FORM_DIRECTIVES } from '@angular/common';

它显示错误angular / common模块未找到。我包含的文件是

    <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>

我错过了任何模块,请有人帮忙

1 个答案:

答案 0 :(得分:1)

@angular/common是Angular2&gt; = RC.0。你问题中的脚本标签来自Angular2 beta。

这可能对您有用:

import { FORM_DIRECTIVES } from 'angular2/common';