根据TinyMCE API,以下JavaScript代码观察TinyMCE编辑器中的更改:
tinyMCE.init({
...
setup : function(ed) {
ed.onChange.add(function(ed, l) {
console.debug('Editor contents was modified. Contents: ' + l.content);
});
}
});
但是,我无法使用js Library从Dart运行此代码。感谢帮助。
更新: 上面的JS代码存在问题。或者,我在here中找到了这个有效的代码:
var ed = new tinymce.Editor('textarea_id', {
init_setting_item: 1,
}, tinymce.EditorManager);
ed.on('change', function(e) {
var content = ed.getContent();
console.log(content);
});
ed.render();
我仍然需要帮助运行Dart的代码。并且最好将其结果存储在Dart变量中以供后续处理。
答案 0 :(得分:2)
这是从Dart调用的相同代码:
var ed = new js.Proxy(js.context.tinymce.Editor, 'textarea_id', js.map({
'init_setting_item': 1
}), js.context.tinymce.EditorManager);
js.retain(ed); // retain allows to use 'ed' in the following callback
ed.on('change', new js.Callback.many((e) {
var content = ed.getContent();
window.console.log(content);
}));
ed.render();