我有一个异步函数,里面有多个API调用。第一个呼叫成功通过,我得到了响应,但第二次呼叫时出现“意外标识符”错误。
async function GetList(req, res, callback) {
var response = await axios.post("http://someURL.com/GetList", req.body);
for (var i = 0; i < response.data.length; i++) {
response.data.forEach(element => {
element.forEach(em => {
var getChildList = await axios.post("http://someURL.com/GetList2", em);
});
});
}