hanxm

Results 1 comments of hanxm

> 我也遇到端口号问题了,最新版1.87存在两个问题:1.rb里脚本的fetch没端口号;2.cdx/bg-sprite.png背景图没端口号; 端口号问题解决: 1.fetch请求可以通过重写fetch方法解决,背景图不知道可不可以根据监听样式修改; `window.fetch = function (url, initData) { const that = this; if (url && url.indexOf(location.host) === -1 && url.indexOf(location.hostname) !== -1) { url = url.replace(location.hostname, location.host); };...