我已升级到Angular2@2.0.0-beta.0.app.ts和boot.ts都在我的src目录中(与Quickstart中的app相比).src和index.html位于项目目录中 - angular2-oPost,与Quickstart示例类似.我已经尝试了很多东西但总是得到 - 找不到boot.js,错误加载boot.js我的index.html加载脚本全部加载并且是:
boot.ts来自Quickstart,简单地说:
"use strict"; import { bootstrap } from 'angular2/platform/browser'; import { ResidenceApp } from './app'; bootstrap( ResidenceApp );
app.ts有一些导入语句,@ Component,@ View,@ RouteConfig和一个bootstrap语句.没有加载.Console错误声明是:
GET http://localhost/src/boot.js [HTTP/1.1 404 Not Found 31ms] 15:53:05.058 Error: Unable to load script http://localhost/src/boot.js Error loading http://localhost/src/boot.js Stack trace: error@http://localhost/angular2-oPost/node_modules/systemjs/dist/system.src.js:2506:18 [2]我正在使用systemjs版本0.19.9如果我将System.import语句更改为
System.import('src/boot.js')然后找到并加载启动,但app.js成为新问题,等等其他组件,如果它(或它们)是硬编码的.
需要改变什么?
1> lame_coder..:尝试以下加载和配置库的顺序,
参考:https://github.com/pkozlowski-opensource/ng2-play/blob/master/index.html