我在Angular2组件类的构造函数中有以下代码:
Observable.from([1,2,3]).subscribe(e=>{
console.log(e);
});
我导入了以下内容:
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/from';
当我在浏览器中加载页面时,我在控制台输出中预计会有1,2,3,但它没有发生。我错过了什么?
答案 0 :(得分:1)
您的代码正在运行,请检查您订阅的位置
export class App {
constructor() {
Observable.from([1, 2, 3]).subscribe(e=>{
console.log(e);
});
}
}
<强> DEMO 强>
答案 1 :(得分:0)
这将做你想要的事情
Observable.of(1,2,3).subscribe(e=>{
console.log(e);
});