最近有个需求就是项目的图片是外网地址。内网需要显示这些图片,但是内网的图片地址映射过来的是ip。所以需要能够把图片的域名替换成ip。
//src_replace.js
Object.defineProperty(Image.prototype, "src", {
configurable: true,
get: function(){return this.__oriSrc},
set: function(value)
{
if(value.indexOf('image.xxxx.com')){
value = value.replace('image.xxxx.com','127.0.0.1)
}
this.__oriSrc = value;
}
});
项目开始加载这个js即可。