最近有個需求就是項目的圖片是外網(wǎng)地址禁悠。內(nèi)網(wǎng)需要顯示這些圖片氧吐,但是內(nèi)網(wǎng)的圖片地址映射過來的是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即可。