当我在nodejs中使用async或await时,我得到了意外的标识符。我在节点版本8.5.0上。完全阻止了这一点。无论如何要解决这个问题吗?
async function methodA(options) {
rp(options)
.then(function (body) {
serviceClusterData = JSON.parse(body);
console.log("Step 2");
console.log("Getting cluster details from zookeeper");
})
.catch(function (err) {
console.log("Get failed!");
});
}
await methodA(options);
console.log("Step 3!");
在第一个回答后尝试了这个:
var serviceClusterData = "";
console.log("Step 1!");
////////////////////
async function methodA(options) {
await rp(options)
.then(function (body) {
serviceClusterData = JSON.parse(body);
console.log("Step 2");
console.log("Getting cluster details from zookeeper");
})
.catch(function (err) {
console.log("Get failed!");
});
}
methodA(options);
console.log("whoops Step 3!");
仍然无序:( 步骤1 第3步 第2步
答案 0 :(得分:4)
您不能在异步功能之外使用await。
async function methodA(options) {
await rp(options)
.then(function (body) {
serviceClusterData = JSON.parse(body);
console.log("Step 2");
console.log("Getting cluster details from zookeeper");
})
.catch(function (err) {
console.log("Get failed!");
});
}
methodA(options);
console.log("Step 3!");
答案 1 :(得分:0)
'use strict'
function methodA(options) {
return new Promise(resolve => {
setTimeout(() => {
console.log(1)
resolve(true);
}, 2000);
})
}
//Sync Declartion
async function test() {
//Await declaration
await methodA({});
console.log(2);
}
test();
似乎您的代码中存在一些语法错误。以上代码适用于8.5.0
参考https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function