Angular2(alpha.55)和SystemJs失败

时间:2015-12-15 18:41:06

标签: angular systemjs

我不明白为什么因为我使用了angular32的alpha.55版本,我的项目无法正确加载。

浏览器出错:

GET http://localhost:8080/angular2/platform/browser.js 404 (Not Found)fetchTextFromURL ...
GET http://localhost:8080/angular2/core.js 404 (Not Found)fetchTextFromURL ...
GET http://localhost:8080/angular2/http.js 404 (Not Found) ....
...

在我的index.html文件的标题中

<script src="\lib\system.src.js?v=0.1.0"></script>
<script src="\lib\angular2.dev.js?v=0.1.0"></script>
<script src="\lib\http.dev.js?v=0.1.0"></script>

我加载所有东西的方式

System.config(
        {
            defaultJSExtensions: true,
            map: {
                "bootstrap": "/components/landing/landing.js"
            }
        });
System.import('bootstrap');

然后我的landing.js文件

import {Http, Headers, HTTP_PROVIDERS} from 'angular2/http';
import {bootstrap} from 'angular2/platform/browser';
import {Component, View, Type} from 'angular2/core';
blabla...

你知道为什么systemjs不再使用dowloaded bundle(angular和http bundle)吗?

0 个答案:

没有答案