一直试图让Angular2,TS和VS2015一起玩。我可能会更快地建立一个伦敦和纽约之间的桥梁.OK,Angular2仍然处于alpha状态,但文档很可怜(对于Angular1来说并不是更好)和打字稿。
我已经到了那里,但我在导入内部模块时遇到问题。在设计时似乎没问题,但是当我跑步时,我得到一个404 ......
import {Component, bootstrap, FORM_DIRECTIVES, NgFor, NgIf, NgClass, View}
from 'angular2/angular2';
//import {HeroService} from '../ng-app/services/heroservice';
import {HeroComponent} from '../ng-app/components/heroComponenet';
import {EmptyService} from '../ng-app/services/EmptyService';
@Component({
selector: 'app',
directives: [FORM_DIRECTIVES, NgFor, NgIf, NgClass],
templateUrl: '../../ng-app/templates/heroTemplate.html',
styleUrls: ['../../css/heroes.css']
})
@View({
directives: [HeroComponent],
template: '<div><hero-component></hero-component></div>'
})
class App {}
bootstrap(App, [EmptyService]);
和错误
我想我真的不明白模块加载应该如何工作!!
感谢