我有节点和表达的REST API。看起来运营商没有被导入(我已经尝试了很少的运营商)而且我不知道为什么它会在async-db.js
上抛出错误。我已经尝试过,以我能想到的所有方式导入运营商,但没有成功,我也在rxjs-compat
中安装了package.json
。 Observable和Subject工作正常,我不知道我做错了什么。我在Angular客户端应用程序中多次使用这样的导入,一切正常。
。 我的文件结构如下所示:
+ app.js
+ async-db.js
++ routes/routes.js
我的代码如下所示:
import { Observable, Subject, from, of} from 'rxjs';
import { map, retryWhen, delay, retry, retryTime } from 'rxjs/operators';
export function t2tObservable({ db, name, param }) {
let retryTime = 125;
let subject = new Subject();
let dbRef = db.ref(param ? name + "/" + param : name);
dbRef.once("value", (snap) => {
if (snap.val()) {
subject.next(snap.val());
subject.complete();
}
else {
subject.error(new Error("T2TError: no data"));
}
}, (e) => {
subject.error(e);
console.log("The read failed: " + e.code);
});
return subject.asObservable().retryWhen(function (errors) {
retryTime *= 2;
return errors.delay(retryTime);
});
}
错误看起来像这样:
return subject.asObservable().retryWhen(function (errors) {
^
TypeError: subject.asObservable(...).retryWhen is not a function
at Object.t2tObservable (...\t2tauthapi\dist\async-db.js:33:33)
at Object.<anonymous> (...\t2tauthapi\dist\routes\routes.js:36:9)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (...\t2tauthapi\dist\app.js:7:14)
我的package.json看起来像这样
{
"name": "t2tauthapi",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore
./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/app.js"
},
"author": "Toni Beverin",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"firebase-admin": "^5.12.0",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.10",
"rxjs": "^6.1.0",
"rxjs-compat": "^6.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"rimraf": "^2.6.2"
}
}
答案 0 :(得分:1)
从rxjs/operators
导入与pipe
- 运算符(https://blog.angularindepth.com/rxjs-understanding-lettable-operators-fe74dda186d3)
直接在像.map
,.filter
,.retryWhen
这样的Observable上使用的函数...必须add
到Observables的原型。
所以你必须像这样导入retryWhen
:
import 'rxjs/add/operator/retryWhen';
但首选使用管道操作员。如果你想使用它,你必须改变这样的功能链:
从:
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/retryWhen';
subject.asObservable()
.map(...logic)
.retryWhen(...logic);
为:
import { map, retryWhen } from 'rxjs/operators';
subject.asObservable().pipe(
map(...logic),
retryWhen(...logic));
答案 1 :(得分:0)
看起来它无法从rxjs/operators
文件夹导入运算符,但是当我从rxjs/operator
文件夹导入它们时它正在运行。在我的node_modules文件夹中,两个文件夹中都有相同的运算符,我不知道为什么会发生这种情况,但它确实有效。