JS中Blob对象转File对象

tech2022-09-29  71

MDN文档:https://developer.mozilla.org/zh-CN/docs/Web/API/File/File

let mp3File = new File([blob], 'ex.mp3', {type: 'audio/mpeg'});
最新回复(0)