我在一个页面上实例化了四个版本的quill。现在我想得到每个的内容。是否可以创建一个功能,通过发送名称来识别我所指的Quill的实例版本。
$.fn.getQuillContent = function(instantiatedquill)
{
var content =
{
text: instantiatedquill.getContents(),
};
};
答案 0 :(得分:0)
基本上,创建一个处理程序,用于实例化Quill并存储它们的实例以供以后重复使用
class QuillHandler {
constructor () {
// this private var would map all different Quill instances through the page
this._instances = {}
},
instanciate (id, node, options) {
// if trying to instanciate already instanciated Quill instance, return it (or throw an Error?)
if (this._instances[id]) {
return this._instances[id]
}
}
// would return undefined if do not exist, otherwithe Quill instance
get (id) {
return this._instances[id]
}
}
在你的文件中,使用全新的处理程序实例化你的Quill,并按你用来创建它的id检索每个实例
const handler = new QuillHandler
handler.instanciate('quill1', node, {})
handler.instanciate('quill2', node, {})
handler.instanciate('quill3', node, {})
handler.instanciate('quill4', node, {})
// get quill 4 contents
handler.get('quill4').getContents()