我如何从承诺中返回价值。
export async function requestAccessToken(httpMethod, URL) {
let header = buildRequestHeader(httpMethod, URL);
console.log(">>>>", header);
fetch(URL, {
method: httpMethod,
headers: {
Authorization: '' + header
},
}).then((response) =>{
})
}
现在我想返回对requestAccesstoken调用的响应。如果我返回的是内部诺言,则给出未定义的消息,而外部的诺言则不起作用,谢谢。