Closed imaegoo closed 4 years ago
在页面空闲时,会连续不断地请求 https://live2d.fghrsh.net/api/model/....mtn,导致自己博客的进度条异常闪动,也可能会增加 @fghrsh 的服务器的压力。
https://live2d.fghrsh.net/api/model/....mtn
我目前的解决方法是修改 live2d.js 里的 loadBytes 方法,记录相同请求的返回数据,在重复调用时直接返回之前记录的数据,测试有效。
index b69e93e..ed1aaa4 100644 @@ -3981,11 +3981,18 @@ default = o; }), i. default = r; var o = e(2); + var requestCache = {}; r.prototype.loadBytes = function(t, i) { + // Cache 相同的请求,减少请求数量 + if (requestCache[t] !== undefined) { + i(requestCache[t]); + return; + } var e = new XMLHttpRequest; e.open("GET", t, !0), e.responseType = "arraybuffer", e.onload = function() { switch (e.status) { case 200: + requestCache[t] = e.response; i(e.response); break; default:
非常抱歉,提交 Issue 到了错误的 repo。
重新提交到了 https://github.com/fghrsh/live2d_demo/issues/6
Issue
在页面空闲时,会连续不断地请求
https://live2d.fghrsh.net/api/model/....mtn
,导致自己博客的进度条异常闪动,也可能会增加 @fghrsh 的服务器的压力。Workaround
我目前的解决方法是修改 live2d.js 里的 loadBytes 方法,记录相同请求的返回数据,在重复调用时直接返回之前记录的数据,测试有效。