我不得不禁用 Froala 中的插件。我正在尝试使用字符数选项来允许显示我需要的数据。到目前为止,我的代码看起来像这样。
Template.hello.helpers ({
'counter': function(){
return $('div#froala-editor').froalaEditor('charCounter.count');
}
});
在客户端,我指的是这样的助手:
<template name="hello">
{{counter}}
</template>
我知道一个有效的事实,"$('div#froala-editor').froalaEditor('charCounter.count')"
因为我将它附加到一个事件(按钮单击)并且能够在控制台中显示计数。
如何在我的模板中显示这些数据?