使用 affektiva js sdk 时发生了两个错误。
引发的第一个错误是 affdex-worker.js 文件中的affectiva库中发生的“内存不足”异常
importScripts(url + "affdex-native-bindings.js");
第二个错误随后在尝试处理时引发“无法克隆对象”错误
catch(err) {
postMessage({ "message": "ready", "status": false, "detail": err });
}
由于两者都具有相同的功能,我假设它们是连接的。
此错误仅在多次重新加载网站后发生!
我需要在重新加载时手动处理一些东西吗?
我试图包括
$(window).bind('beforeunload', function(){
if(detector != null){
detector.stop();
}
});
在网站上,但这并没有改变事情......