如何使此呼叫阻塞(例如,使用异步/等待)?
testMethod(message) {
let signature;
eccrypto.sign(this.privateKey, msg)
.then(function (sig) {
console.log("Signature in DER format:", sig);
signature = sig;
});
return signature;
}
我希望testMethod返回signature,现在返回(当然)undefined!我一直在玩async/await没有成功...
有什么帮助吗?
RISEBY
三国纷争
相关分类