gpt4 book ai didi

jquery - 具有高级自动完成功能的 Angular TextEditor

转载 作者:行者123 更新时间:2023-12-01 03:09:31 27 4
gpt4 key购买 nike

我正在尝试为 Angular 找到一个好的富文本编辑器指令,它支持树状自动完成,这意味着:

我可以传递它,例如用于自动完成的“建议”数组,每个“建议”包含一个“文本”和一个嵌套“建议”数组,等等。

而且,我可以使用“.”访问嵌套选项。例如。

所以,我通过了:

[{
'text': 'parent1',
'suggestions': [{
'text': 'child1',
}, {
'text': 'child2'
}]
}, {
'text', 'parent2',
'suggestions': [{
'text': 'child3',
}, {
'text': 'child4'
}]
}]

用户可以写“p”来查看“parent1”和“parent2”作为建议。当他选择任何一个并按“.”时他将其子项视为建议。

JQuery 选项也适合我。

最佳答案

您可以使用ace编辑器并添加自动完成功能:

var langTools = ace.require("ace/ext/language_tools");
var editor = ace.edit("editor");
editor.setOptions({enableBasicAutocompletion: true});
// uses http://rhymebrain.com/api.html
var rhymeCompleter = {
getCompletions: function(editor, session, pos, prefix, callback) {
if (prefix.length === 0) { callback(null, []); return }
$.getJSON(
"http://rhymebrain.com/talk?function=getRhymes&word=" + prefix,
function(wordList) {
// wordList like [{"word":"flow","freq":24,"score":300,"flags":"bc","syllables":"1"}]
callback(null, wordList.map(function(ea) {
return {name: ea.word, value: ea.word, score: ea.score, meta: "rhyme"}
}));
})
}
}
langTools.addCompleter(rhymeCompleter);
<div id="editor" style="height: 500px; width: 800px">Type in a word like "will" below and press ctrl+space or alt+space to get "rhyme completion"</div>
<div id="commandline" style="position: absolute; bottom: 10px; height: 20px; width: 800px;"></div>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="https://rawgithub.com/ajaxorg/ace-builds/master/src/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="https://rawgithub.com/ajaxorg/ace-builds/master/src/ext-language_tools.js" type="text/javascript" charset="utf-8"></script>

来源:https://github.com/ajaxorg/ace/wiki/How-to-enable-Autocomplete-in-the-Ace-editor

关于jquery - 具有高级自动完成功能的 Angular TextEditor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35197883/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com