将文件传输到webworker:DataCloneError:无法克隆该对象
我想从表单传输文件到webworker。 在铬我简单可以使用此代码来传输FileList对象:
worker.postMessage(files: array_files);
但与Firefox我得到这个错误:
Transfer file to webworker: DataCloneError: The object could not be cloned.
所以我尝试使用可传输对象的语法。 像这样?
var post = {files: array_files, file_ids: response.file_ids};
worker.postMessage(post, [post]);
但随着我在Chrome中得到这个
Uncaught DataCloneError: Failed to execute 'postMessage' on 'Worker': Value at index 0 does not have a transferable type.
还是
DataCloneError: The object could not be cloned.
在Firefox中。
将FileList传递给工作人员的正确方法是什么?
我不知道如何通过postMessage传递File对象,但至少我可以建议可传递对象不以这种方式工作。 可选的第二个参数是您希望传递的任何类型数组的后端ArrayBuffer实例的数组。 举例来说,假设你想发布的消息是一个结构化对象:
var message = {foo: 'abc', bar: new Uint8Array(...)};
worker.postMessage(message, [message.bar.buffer])
另请注意,将类型数组作为可传输对象传递给另一个工作站/窗口会使传输的数组无法从发送工作站/窗口访问。
链接地址: http://www.djcxy.com/p/81729.html上一篇: Transfer file to webworker: DataCloneError: The object could not be cloned