如何加密ckeditor图像上传url
本文关键字:图像 url ckeditor 何加密 加密 | 更新日期: 2023-09-27 17:53:34
在ckeditor中上传图片后,会显示完整的图片url。
如何在ckeditor中加密url ?
没有人可以访问或查看原始图像的url。
提前感谢。
您可以尝试在CKEditor编辑器事件上添加javascript方法,然后在那里编码URL。这样的。
CKEDITOR.instances['EDITOR_CK'].on('contentDom', function() {
this.document.on('click', function(event){
var uri = "test.aspx?id=abc";
var res = encodeURI(uri);
//then set this encoded url in the editor.
});
});