我是angular2的新手。
import {FORM_DIRECTIVES,NgForm} from 'angular2/common';
我得到的错误是:
system.src.js:1063获取http://127.0.0.1:9090/src/angular2/common 404(未找到)
答案 0 :(得分:0)
在我的HTML页面的头部使用此配置,它适用于我:
<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>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
希望它可以帮到你, 亨利