我有这样的功能:
exports.deleteUser = functions.https.onCall(async(data, context) => {
let id = context.auth.uid;
console.log('Delete user: ' + id);
//delete from algolia
usersIndex.deleteObject(id);
console.log(id + 'Deleted from algolia');
//delete user following
await admin.firestore().collection('users').doc(id).collection('Following').get()
.then(async(snapshot) => {
for await (const document of snapshot.docs) {
await admin.firestore().collection('users').doc(document.documentId)
.update({
'NumberOfFollowers': FieldValue.increment(-1)
});
await admin.firestore().collection('users').doc(document.documentId).collection('Followers')
.doc(id).delete();
}
return console.log('Following of ' + id + ' deleted');
});
...
但是当我尝试将其部署到firebase函数时,出现以下错误:
! functions[deleteUser(us-central1)]: Deployment error.
Function failed on loading user code. Error message: Code in file index.js can't be loaded.
Is there a syntax error in your code?
Detailed stack trace: /srv/index.js:47
for await (const document of snapshot.docs) {
^^^^^
SyntaxError: Unexpected reserved word
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
at Module._compile (module.js:617:28)
at Object.Module._extensions..js (module.js:664:10)
at Module.load (module.js:566:32)
at tryModuleLoad (module.js:506:12)
at Function.Module._load (module.js:498:3)
at Module.require (module.js:597:17)
at require (internal/module.js:11:18)
at getUserFunction (/worker/worker.js:439:24)
发现了这个问题:https://github.com/nodejs/node/issues/21617,但我确实在异步函数中设置了ForLoop ...
答案 0 :(得分:6)
for-await loops are first available in node in version 10。您可能正在本地或在package.json中使用较早的节点版本。
您需要确保在用于部署的两个本地节点中至少使用节点10:
$ node --version
...should print 10.x.x or later
,还将package.json中的节点10定位为目标,以便可以告知Cloud Functions使用哪个版本进行部署:
"engines": {
"node": "10"
}
答案 1 :(得分:1)
使用以下命令破解解决方案
nvm use lists //if nvm is installed it is useful to check versions of node
node -v // to check which version is getting used
如果节点的版本低于 10.x.x,则在 nvm 的帮助下,我们可以使用以下命令指向 10.x.x 以上的其他节点:
nvm use 12.19.0 //in my case, I have option for latest one as it was installed using nvm install 12.19.0
注意:安装nvm,方便切换节点版本