插入网络视频的校验

使用 editor.config.onlineVideoCheck 可以自定义检查插入网络视频的内容。

  1. const E = window.wangEditor
  2. const editor = new E('#div1')
  3. // 自定义检查插入视频的链接
  4. editor.config.onlineVideoCheck = function(video)) {
  5. // 编辑器会根据返回的内容做校验:比如以下几种情况
  6. // 1. 返回 true ,说明检查通过
  7. return true
  8. // 2. 返回一个字符串,说明检查未通过,编辑器会阻止视频插入。会 alert 出错误信息(即返回的字符串)
  9. // return '插入的视频 有 xxx 错误'
  10. // 3. 返回 undefined(即没有任何返回),说明检查未通过,编辑器会阻止视频插入。
  11. // 此处,你可以自定义提示错误信息,自由发挥
  12. }
  13. editor.create()