【发布时间】:2017-10-01 04:15:35
【问题描述】:
我能否以某种方式将单词添加到从服务器获取的 Summernote 字典中?默认情况下,Summernote 支持名为“hint”的选项,您可以在“words”中为提示词预定义字典,如下所示:
$(".hint2basic").summernote({
height: 100,
toolbar: false,
placeholder: 'type with apple, orange, watermelon and lemon',
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;
}));
}
}
});
但是如果我想添加一些我从服务器获得的其他单词怎么办:
$.ajax({
beforeSend: function(request) {
request.setRequestHeader("Accept", "application/ld+json");},
url:'MY URL',
type:'POST',
data:JSON.stringify(jsonld),
success: function(response)
{
//here must be something, e.g.
var arrayWithWords = response;
}
});
在“arrayWithWords”中,我现在有一个字符串,例如“汽车”、“房子”、“包”。
我现在应该怎么做才能将这个“arrayWithWords”添加到 Summernote 的“words”中,或者只是将“words”值替换为“arrayWithWords”的值?主要问题是在用户可以使用 Summernote 之前,您必须在 Summernote 中为提示词预定义字典,而我看不到任何更新“单词”的方法。
【问题讨论】:
标签: javascript html summernote