为什么 TinyMCE 编辑器和按 id 返回编辑器实例文本统计信息的函数中显示的字数有 1 个单词的差异
我试图限制 TinyMCE 编辑器中的字数。为此,使用了 TinyMCE https://www.tiny 文档中建议的函数。云/docs-3x/howto/words/。此函数返回的字数始终比编辑器状态栏中显示的字数大 1。例如:如果我们清空编辑器,编辑器状态栏中的字数显示 0,但函数返回 1。同样,编辑器上的字数为 10,函数返回 11。为什么该函数返回不同的值以及如何匹配这些值?
I was trying to limit the word count in TinyMCE editor. For that used a function suggested in the documentation of TinyMCE https://www.tiny.cloud/docs-3x/howto/words/. This function always returns word count greater by 1 than the word count shown in the editor's status bar. For eg: if we empty the editor, the word count in status bar of editor shows 0 but function returns 1. Likewise the word count is 10 on editor, function returns 11. Why that function returns different value and how can I match these values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提供的链接指向 TinyMCE 3 文档,该文档已过时。 TinyMCE 5是当前发布的编辑器,TinyMCE 6将很快发布。
在 TinyMCE 4+ 中,您应该使用字数统计插件的 API,该 API 记录在此处:
https://www.tiny.cloud/docs/plugins/opensource/wordcount /#api
如果您使用 wordcount API,它将与编辑器中显示的内容匹配。
The link you provide is to TinyMCE 3 documentation which is out of date. TinyMCE 5 is the currently released editor and TinyMCE 6 will be released shortly.
In TinyMCE 4+ you should use the API for the wordcount plugin which is documented here:
https://www.tiny.cloud/docs/plugins/opensource/wordcount/#api
If you use the wordcount API it will match what is displayed in the editor.