gpt4 book ai didi

javascript - 访问 canvas.ToBlob() 异步函数之外的 blob 值

转载 作者:行者123 更新时间:2023-12-04 16:51:07 25 4
gpt4 key购买 nike

我正在使用 HTMLCanvas返回 async toBlob() 之外的 blob 对象的元素功能。这个函数不返回输出值,所以我试图在外面声明一个变量并通过命令访问它。

我如何使用 JS Promise对于这种情况?

var myblob;
canvas.toBlob(function(blob) {
myblob = blob;
console.log("inside " + myblob); // getting value after the console outside
})
console.log( "outside " + myblob); // getting undefined

最佳答案

const blob = await new Promise(resolve => canvasElem.toBlob(resolve));

关于javascript - 访问 canvas.ToBlob() 异步函数之外的 blob 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42458849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com