我目前正在调查Angular2,来自AngularJS背景。在这件事上,我也在研究SystemJS和Typescript
但是,我在使用Typescript类型和SystemJS运行Angular2时遇到了问题。使用没有任何类型的打字稿可以按预期工作,但是一旦我尝试从Angular2输入中加载任何模块,SystemJS似乎无法解决它。
从我所看到的,这些打字与angular2.dev.js一起发货,所以只要我导入它,我应该没事吗?
该错误与https://github.com/systemjs/systemjs/issues/610有一些相似之处,但不幸的是他的解决方案对我不起作用。
不幸的是,我对SystemJS以及Typescript的体验是空的,我只是想设置一个系统来学习。所有库都是最新的,刚刚安装了npm。生成的构建由NodeJS express服务器托管,而Typescript文件及其类型不是。
我得到的错误是:
GET http://localhost:8000/angular2/angular2 404 (Not Found)
这是我的'index.html'的头部摘录:
<head>
<script src="assets/js/lib/traceur.js"></script>
<script src="assets/js/lib/system.src.js"></script>
<script src="assets/js/lib/Rx.js"></script>
<script src="assets/js/lib/angular2.dev.js"></script>
<script>
System.config({
packages: {
assets: {
format: 'register',
defaultExtension: 'js'
},
}
});
System.import( 'assets/js/boot' )
.then( null, console.error.bind( console ));
</script>
</head>
boot.ts Typescript-file(我只添加了bootstrap(),因此angular2实际上包含在编译中):
import { bootstrap } from 'angular2/angular2';
bootstrap();
console.log( 'test' );
以及tsc编译后产生的boot.js:
System.register(['angular2/angular2'], function(exports_1) {
var angular2_1;
return {
setters:[
function (angular2_1_1) {
angular2_1 = angular2_1_1;
}],
execute: function() {
angular2_1.bootstrap();
console.log('test');
}
}
});
//# sourceMappingURL=boot.js.map
tsdconfig.json:
{
"compilerOptions": {
"target": "ES5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false
},
"exclude": [
"node_modules"
]
}
任何帮助都很受欢迎,祝你有个愉快的假期! :)
答案 0 :(得分:4)
根据我的说法,你必须以特定的方式设置index.html,我发现启动的最佳设置是https://github.com/pkozlowski-opensource/ng2-play/blob/master/index.html。
你可以在这里参考我的回购项目设置/结构
我的index.html是
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script>
System.config({
defaultJSExtensions: true,
map: {
rxjs: 'node_modules/rxjs'
},
packages: {
rxjs: {
defaultExtension: 'js'
}
}
});
</script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/router.dev.js"></script>
<script src="node_modules/angular2/bundles/http.dev.js"></script>
<script>
System.import('dist/bootstrap');
</script>
进一步了解更多信息我只是为其他人写下此列表,这可能对某人有帮助
import {Component, View, Directive, Input, Output, Inject, Injectable, provide} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';
import {CORE_DIRECTIVES, FORM_DIRECTIVES, NgClass, NgIf NgForm, Control, ControlGroup, FormBuilder, Validators} from 'angular2/common';
import {RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, Router, LocationStrategy, HashLocationStrategy} from 'angular2/router';
import {Http, HTTP_PROVIDERS, RequestOptions, Headers, Request, RequestMethod} from 'angular2/http'