编程语言
首页 > 编程语言> > javascript-使用!或@在Summernote提示内容中

javascript-使用!或@在Summernote提示内容中

作者:互联网

在我的summernote提示选项中,我具有以下内容

hint: {
    match: /\B[@!](\w*)$/,
    search: function (keyword, callback) {
        callback($.grep(mentions, function (i) {
            user = mentionData[i];
            return user.name.indexOf(keyword) === 0;
        }));
    },
    template: function...
    content: function (i) {
        var user = mentionData[i];
        return $('<span>@' + user.username + '</span>')[0];
    }
}

我希望能够插入@或!符号(用户使用其发起提示的任何一种)插入内容选项.有没有办法将关键字传递给内容函数?还是有针对summernote的特定方法来做到这一点?

解决方法:

您可以使用数组提示,例如:

hint:[
      {
        words: ['apple', 'orange', 'watermelon', 'lemon'],
        match: /\b(\w{1,})$/,
        search: function (keyword, callback) {
        callback($.grep(this.words, function (item) {
         return item.indexOf(keyword) === 0;
        }));
      },
      {
        mentions: ['jayden', 'sam', 'alvin', 'david'],
        match: /\B@(\w*)$/,
        search: function (keyword, callback) {
         callback($.grep(this.mentions, function (item) {
          return item.indexOf(keyword) == 0;
         }));
        },
        content: function (item) {
         return '@' + item;
        }    
      }
    ]
  }
},

标签:summernote,javascript
来源: https://codeday.me/bug/20191111/2021130.html