var options = {
// 全局组件名称,使用new VueHtml5Editor(options)时该选项无效
// global component name
name: 'vue-html5-editor', // 是否显示模块名称,开启的话会在工具栏的图标后台直接显示名称 // if set true,will append module name to toolbar after icon
showModuleName: false, // 自定义各个图标的class,默认使用的是font-awesome提供的图标 // custom icon class of built-in modules,default using font-awesome // 配置图片模块 // config image module
image: {
// 文件最大体积,单位字节 max file size
sizeLimit: 1024 * 1024, // 上传参数,默认把图片转为base64而不上传 // upload config,default null and convert image to base64
upload: {
url: "https://upload-z2.qiniup.com/",
headers: { 'Content-Type': 'multipart/form-data;boundary = ' + new Date().getTime()},
params: {},
fieldName: {}
}, // 压缩参数,默认使用localResizeIMG进行压缩,设置为null禁止压缩 // compression config,default resize image by localResizeIMG (https://github.com/think2011/localResizeIMG) // set null to disable compression
compress: {
width: 1600,
height: 1600,
quality: 80
}, // 响应数据处理,最终返回图片链接 // handle response data,return image url
uploadHandler(responseText) {
//default accept json data like {ok:false,msg:"unexpected"} or {ok:true,data:"image url"}
var json = JSON.parse(responseText);
if (!json.ok) {
alert(json.msg);
} else {
return json.data;
}
}
}, // 语言,内建的有英文(en-us)和中文(zh-cn) //default en-us, en-us and zh-cn are built-in
upload里面的参数怎么配啊 大佬指点下啊 七牛应该还要放token啊 这个url应该是跳转到别的方法去的吗?