概述
如果想自定义控制图片上传完成、失败、超时时的操作,可通过配置 `editor.config.uploadImgFns.onload` `editor.config.uploadImgFns.ontimeout` `editor.config.uploadImgFns.onerror` 三个事件来自定义。
另外,在自定义的上传事件中,可通过`editor.uploadImgOriginalName`来获取图片名称(例如用作``的`alt`属性),注意看代码注释。
**注意,`ontimeout`和`onerror`两个事件在IE8、9下不起作用**
----
代码示例如下:
```html
请输入内容...
var editor = new wangEditor('div1');
// 自定义load事件
editor.config.uploadImgFns.onload = function (resultText, xhr) {
// resultText 服务器端返回的text
// xhr 是 xmlHttpRequest 对象,IE8、9中不支持
// 上传图片时,已经将图片的名字存在 editor.uploadImgOriginalName
var originalName = editor.uploadImgOriginalName || '';
// 如果 resultText 是图片的url地址,可以这样插入图片:
editor.command(null, 'insertHtml', '');
// 如果不想要 img 的 max-width 样式,也可以这样插入:
// editor.command(null, 'InsertImage', resultText);
};
// 自定义timeout事件
editor.config.uploadImgFns.ontimeout = function (xhr) {
// xhr 是 xmlHttpRequest 对象,IE8、9中不支持
alert('上传超时');
};
// 自定义error事件
editor.config.uploadImgFns.onerror = function (xhr) {
// xhr 是 xmlHttpRequest 对象,IE8、9中不支持
alert('上传错误');
};
editor.create();
```
----
以下代码,是wangEditor.js中定义的。**仅供参考,请勿直接复制粘贴来用**。
```js
var editor = this;
var fns = editor.config.uploadImgFns; // editor.config.uploadImgFns = {} 在config文件中定义了
// -------- 插入图片的方法 --------
function insertImg(src) {
var img = document.createElement('img');
img.onload = function () {
var html = '';
editor.command(null, 'insertHtml', html);
E.log('已插入图片,地址 ' + src);
img = null;
};
img.onerror = function () {
E.error('使用返回的结果获取图片,发生错误。请确认以下结果是否正确:' + src);
img = null;
};
img.src = src;
}
// -------- 定义load函数 --------
fns.onload || (fns.onload = function (resultText, xhr) {
E.log('上传结束,返回结果为 ' + resultText);
if (resultText.indexOf('error|') === 0) {
// 提示错误
E.warn('上传失败:' + resultText.split('|')[1]);
alert(resultText.split('|')[1]);
} else {
E.log('上传成功,即将插入编辑区域,结果为:' + resultText);
// 将结果插入编辑器
insertImg(resultText);
}
});
// -------- 定义tiemout函数 --------
fns.ontimeout || (fns.ontimeout = function (xhr) {
E.error('上传图片超时');
alert('上传图片超时');
});
// -------- 定义error函数 --------
fns.onerror || (fns.onerror = function (xhr) {
E.error('上传上图片发生错误');
alert('上传上图片发生错误');
});
```
最后
以上就是开心灰狼为你收集整理的wangeditor上传html,自定义上传事件的全部内容,希望文章能够帮你解决wangeditor上传html,自定义上传事件所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复