我的index.js中包含以下代码:
exports.queryAPI = functions.https.onRequest((request, response) => {
return cors(request, response, () => {
return APICall(request.params.searchTerm).then((result) => {
console.log(result);
return result;
}).catch(() => {
return response.status(400).json({ error: 'Something went wrong.' });
})
});
});
async function APICall(search) {
const response = await apicalypse({
queryMethod: "body",
headers: {
'Accept': 'application/json',
'user-key': API_KEY
},
responseType: 'json',
timeout: 1000,
})
.fields(["name"]) // fetches only the name and movies fields
.search(search) // search for a specific name (search implementations can vary)
// .where("age > 50 & movies != n") // filter the results
// .where(["age > 50", "movies != n"]) // same as above
.request(API_URL);
return response.data;
}
当我尝试部署此功能时,出现以下错误:
Function load error: Code in file index.js can't be loaded.
Is there a syntax error in your code?
Detailed stack trace: /user_code/index.js:34
async function APICall(search) {
^^^^^^^^
SyntaxError: Unexpected token function
根据我的搜索,我使用异步功能做了正确的设置。有人指出我犯了错吗?
答案 0 :(得分:2)
Node.js版本8是必需的。在您的开发机器上执行此操作:
nvm install 8.6.1
nvm alias default 8.6.1
然后在您的functions
目录中,打开package.json
并添加:
"engines": {
"node": "8"
},
答案 1 :(得分:1)
您可能在本地计算机上使用的节点版本小于8。版本8是第一个支持ES7异步/等待语法的版本。因此,第一件事是更新本地节点安装。用node --version
检查版本。
Cloud Functions默认情况下使用节点6作为运行时,因此,如果要运行使用async / await的已部署代码,则还必须告知Firebase CLI以目标节点8为目标。Beta 8支持节点8。您可以在the documentation和this blog中阅读有关定位节点8的信息。