读取某些页面后出现错误
“pdf.js:25744 未捕获的 DOMException:无法在‘DedicatedWorkerGlobalScope’上执行‘postMessage’:数据无法克隆,内存不足。”
仅当我使用大小超过 2 MB 的文件时才会发生这种情况。
如何更改 pdf.js 文件中的最大允许文件?
MessageHandler.prototype = {
on: function messageHandlerOn(actionName, handler, scope) {
var ah = this.actionHandler;
if (ah[actionName]) {
throw 'There is already an actionName called "' + actionName + '"';
}
ah[actionName] = [handler, scope];
},
send: function messageHandlerSend(actionName, data) {
this.comObj.postMessage({ //console is showing error in this line
action: actionName,
data: data
});
}
};
弑天下
达令说