如何使用systemjs在最小的Angular 2应用程序中加载RxJS?

时间:2015-10-27 22:47:05

标签: javascript angular typescript rxjs

我无法在地面使用RxJS获得最小的Angular 2应用程序。我使用Typescript(tsc 1.6.2)和systemjs进行模块加载。如何让systemjs正确加载Rx模块?我已经没有想法尝试了,而且我很欣赏任何指向我做错的指针。模块加载对我来说有点神奇。非常令人沮丧。

的index.html

<!DOCTYPE html>
<html>
<head>
    <title>Title</title>
    <script src="../node_modules/es6-shim/es6-shim.js"></script>
    <script src="../node_modules/systemjs/dist/system.src.js"></script>
    <script src="../node_modules/rx/dist/rx.lite.js"></script>
    <script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
</head>

<body>
    <app>App loading...</app>
    <script>
        System.config({
            packages: { 'app': { defaultExtension: 'js' } }
        });
        System.import('app/app');
    </script>
</body>
</html>

app.ts

/// <reference path="../../node_modules/rx/ts/rx.all.d.ts" />
import { bootstrap, Component, View } from 'angular2/angular2';
import * as Rx from 'rx';

@Component({
    selector: 'app'
})
@View({
        template: `Rx Test`
})
export class App {
    subject: Rx.Subject<any> = new Rx.Subject<any>();
}
bootstrap(App);

SystemJS尝试加载不存在的文件:

enter image description here

一旦我在上面的代码中注释掉主题,一切都运行正常,因为没有尝试加载不存在的文件(并且没有加载rx)。

3 个答案:

答案 0 :(得分:9)

更新angular2 beta 0

Angular2不再在Angular2本身内捆绑RxJS。现在您必须单独导入运算符。这是一个重要的突破性变化,answered here。所以请参考这个答案,因为这个已经过时,不再适用了。

2015年12月11日更新

Alpha46正在使用RxJS alpha 0.0.7(很快将为0.0.8)。由于此ng2 alpha版本不再需要以下解决方案,您现在可以直接从Observable导入Subjectangular2/angular等,因此可以放弃原始答案

import {Observable, Subject} from 'angular2/angular2';

=====================================

Angular2不再使用旧的RxJS,他们移动到新的RxJS 5(又名RxJS Next),因此它将与Http和EventEmitter冲突。

首先将导入和脚本删除到rx.lite.js.

相反,您必须这样做(您的配置中不需要脚本或映射)

修改

这一行是为了让它在plnkr中运行,但在我的项目中我只需添加其他东西

Plnkr版

import Subject from '@reactivex/rxjs/dist/cjs/Subject';

离线版

import * as Subject from '@reactivex/rxjs/dist/cjs/Subject';

有关离线版

的注意事项

如果你在本地项目中尝试第一种plnkr方法,你可能会收到此消息错误

TypeError: Subject_1.default is not a function

因此,对于本地(离线)版本,您应该使用第二种方法(使用星号)。

注意

Subject中没有括号,this conversation中解释了这一点(我有同样的问题,哈哈)

这里是plnkr not failing

我希望它有所帮助。如果我错过了什么,请告诉我;)

答案 1 :(得分:8)

对于angular2 alpha52使用rxjs 5alpha.14

<script>
System.config({
  map: { rxjs: 'node_modules/rxjs' },
  packages: {
    rxjs: { defaultExtension: 'js' },
    'app': {defaultExtension: 'js'}
  }
});
System.import('app/app');
</script>

但你必须像这个例子一样单独导入每个操作符

import { Subject } from 'rxjs/Subject';
import { Observable } from 'rxjs/Observable';

require('rxjs/add/operator/map');
require('rxjs/add/operator/scan');
require('rxjs/add/operator/mergemap');  //for flatmap
require('rxjs/add/operator/share');
require('rxjs/add/operator/combinelatest-static'); //for combinelatest

答案 2 :(得分:2)

在Angular 4发布后发布此答案。尝试从Rxjs加载最小值,因为即使AOT的Angular prod构建也会达到300kb

希望它有所帮助。

import { Injectable } from '@angular/core';
import {Http} from "@angular/http";
import {Observable} from "rxjs/Observable";
import 'rxjs/add/operator/map';// load this in main.ts

import {AllUserData} from "../../../shared/to/all-user-data";

@Injectable()
export class ThreadsService {

  constructor(private _http: Http) { }

  loadAllUserData(): Observable<AllUserData> {
    return this._http.get('/api/threads')
      .map(res => res.json());
  }

}