第一步,找到對(duì)應(yīng)遠(yuǎn)程功能,查閱:ueditor.all.js文件,發(fā)現(xiàn)如下代碼:
// plugins/catchremoteimage.js ///import core ///commands 遠(yuǎn)程圖片抓取 ///commandsName catchRemoteImage,catchremoteimageenable ///commandsTitle 遠(yuǎn)程圖片抓取 /** * 遠(yuǎn)程圖片抓取,當(dāng)開啟本插件時(shí)所有不符合本地域名的圖片都將被抓取成為本地服務(wù)器上的圖片 */ UE.plugins['catchremoteimage'] = function () { var me = this, ajax = UE.ajax; /* 設(shè)置默認(rèn)值 */ if (me.options.catchRemoteImageEnable === false) return; me.setOpt({ catchRemoteImageEnable: false }); //....... };
有個(gè)配置參數(shù):catchRemoteImageEnable
第二步,修改ueditor.config.js中的catchRemoteImageEnable配置參數(shù)
//抓取遠(yuǎn)程圖片是否開啟,默認(rèn)true ,catchRemoteImageEnable:false
然后編輯器頁面,刷新,然后復(fù)制粘貼遠(yuǎn)程圖片,這時(shí)不再向服務(wù)端發(fā)送get請(qǐng)求catchimage。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:0731-84117792 E-MAIL:11247931@qq.com