16

标题说明了一切。如何让TinyMCE显示字符数而不是字数?

在此处输入图像描述

4

5 回答 5

17

wordcount插件现在可以计算和显示字符:

单击状态栏中的字数统计可在计算字数和字符数之间切换。

默认模式是“words”,但是很容易模拟点击状态栏来切换它。

通过以下方式更改您的编辑器配置:

tinymce.init({
   plugins: "wordcount",

   // ... 

   init_instance_callback: function (editor) {
      $(editor.getContainer()).find('button.tox-statusbar__wordcount').click();  // if you use jQuery
   }
});

就这样。你现在有字符数了。

于 2019-07-25T10:43:56.307 回答
12

编写自己的插件。

以下解决方案基于本文。该charactercount插件计算用户看到的实际字符,所有 HTML 和隐藏字符都被忽略。该数字在每次“按键”事件时更新。

字符计数插件:

tinymce.PluginManager.add('charactercount', function (editor) {
  var self = this;

  function update() {
    editor.theme.panel.find('#charactercount').text(['Characters: {0}', self.getCount()]);
  }

  editor.on('init', function () {
    var statusbar = editor.theme.panel && editor.theme.panel.find('#statusbar')[0];

    if (statusbar) {
      window.setTimeout(function () {
        statusbar.insert({
          type: 'label',
          name: 'charactercount',
          text: ['Characters: {0}', self.getCount()],
          classes: 'charactercount',
          disabled: editor.settings.readonly
        }, 0);

        editor.on('setcontent beforeaddundo', update);

        editor.on('keyup', function (e) {
            update();
        });
      }, 0);
    }
  });

  self.getCount = function () {
    var tx = editor.getContent({ format: 'raw' });
    var decoded = decodeHtml(tx);
    // here we strip all HTML tags
    var decodedStripped = decoded.replace(/(<([^>]+)>)/ig, "").trim();
    var tc = decodedStripped.length;
    return tc;
  };

  function decodeHtml(html) {
    var txt = document.createElement("textarea");
    txt.innerHTML = html;
    return txt.value;
  }
});

CSS 调整:

/* Optional: Adjust the positioning of the character count text. */
label.mce-charactercount {
  margin: 2px 0 2px 2px;
  padding: 8px;
}

/* Optional: Remove the html path code from the status bar. */
.mce-path {
  display: none !important;
}

TinyMCE 初始化(使用 jQuery)

$('textarea.tinymce').tinymce({
  plugins: "charactercount",
  statusbar: true,
  init_instance_callback: function (editor) {
    $('.mce-tinymce').show('fast');
    $(editor.getContainer()).find(".mce-path").css("display", "none");
  }
  // ...
});

附言。使用 JS 缩小器。

于 2016-01-04T09:19:25.387 回答
7
    init_instance_callback: function (editor) {
editor.on('change', function (e) {
                var length = editor.contentDocument.body.innerText.length;
            });
}

在初始化时添加这个。长度是你的字符长度。现在您需要隐藏字数并附加一个带有字符计数器的新字符串。

于 2017-03-20T10:22:34.270 回答
1

通过创建银色主题的自定义版本,我可以将wordcount插件设置为默认显示字符。看起来在 TinyMCE 5.1.6 中,插件的呈现方式是在主题文件中设置的。TinyMCE 配置:

{
    selector: '.tinymce',
    theme: 'silver-custom',
    ...
}

主题文件是themes/silver/theme.js的副本,需要在TinyMCE之后加载。

变化:

 ...
 function Theme () {
      global$1.add('silver-custom', function (editor) {
 ...

...
var renderWordCount = function (editor, providersBackstage) {
    ...
    store: {
        mode: 'memory',
        initialValue: {
        mode: 'characters',
        ...
}
...
于 2020-02-11T09:01:30.780 回答
0

自 2017 年以来,我在生产中使用这个插件https://gist.github.com/imanilchaudhari/5a121ea6420eb4b8aa7ee70a5f7074e3 。这个插件很好。

我最初以为charword count 带有 tinymce 内置插件,但后来发现它是自定义的。

它将在底部状态栏中显示字符数

在此处输入图像描述

于 2021-11-22T12:35:12.547 回答