以下是来自angularjs 2 es6模板http://goo.gl/IGaTZw的一个plunker 我添加了traceur并删除了main.es6.js替换为main.js以防隐式模式干扰。
<head>
<script data-require="traceur-runtime@0.0.88" data-semver="0.0.88" src="https://cdn.rawgit.com/google/traceur-compiler/d3d0553de3315398a956dc2f9edd6a982d786b0a/bin/traceur-runtime.js"></script>
<script src="https://jspm.io/system.js"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.30/angular2.dev.js"></script>
</head>
<body>
<app></app>
<script>System.import('main');</script>
</body>
Main.js -----
import {
ComponentAnnotation as Component,
ViewAnnotation as View, bootstrap
} from 'angular2/angular2';
@Component({
selector: 'app',
viewInjector: [Service]
})
@View({
template: '{{greeting}} world!'
})
class App {
constructor(service: Service) {
this.greeting = service.greeting();
setTimeout(() => this.greeting = 'Howdy,', 1000);
}
}
class Service {
greeting() {
return 'Hello';
}
}
bootstrap(App);
我尝试在本地执行下载脚本文件但在那里也失败了。我不能使用npm等因为我的笔记本电脑有问题。
非常感谢提前。
答案 0 :(得分:0)
要纠正,请包括traceur选项:
System.config({
traceurOptions: {
annotations: true
}
,(注释是实验性的,必须手动打开)添加
import { Inject } from 'angular2/di';
并更改App构造函数参数
constructor(@Inject(Service) service).
似乎也可以在构造函数中包含类型 构造函数(服务:服务) 只需添加类型:true即可跟踪注入注释。