清除 Ember MobileDoc-kit 编辑器数据
Clear Ember MobileDoc-kit Editor Data
我在使用 ember-mobile-doc 编辑器的基本任务时遇到了一些问题:我希望能够通过操作清除编辑器的内容。
与:
{{#mobiledoc-editor mobiledoc=document}}...{{#/mobiledoc-editor}
我试过将 document
设置为 false
、null
,但没有成功。我查看了 github 上的代码寻找它,但似乎找不到前进的道路。
因为我已经两次遇到这个问题,所以我需要回答它以节省我自己的麻烦。
jQuery版本:
import {run} from '@ember/runloop'
//inside component
run(() => {
$('.mobiledoc-editor__editor').empty();
});
我在使用 ember-mobile-doc 编辑器的基本任务时遇到了一些问题:我希望能够通过操作清除编辑器的内容。
与:
{{#mobiledoc-editor mobiledoc=document}}...{{#/mobiledoc-editor}
我试过将 document
设置为 false
、null
,但没有成功。我查看了 github 上的代码寻找它,但似乎找不到前进的道路。
因为我已经两次遇到这个问题,所以我需要回答它以节省我自己的麻烦。
jQuery版本:
import {run} from '@ember/runloop'
//inside component
run(() => {
$('.mobiledoc-editor__editor').empty();
});