2016-02-04 41 views
2

我試圖找到一個角度很好的富文本編輯器指令,支持自動完成爲一棵樹,這意味着:角文本編輯有先進的自動完成

我可以通過它例如「建議」的一個數組自動完成,每個「建議」包含一個「文本」和嵌套的「建議」等數組遞歸。

而且,我可以使用「。」來訪問嵌套選項。例如。

所以,我通過它:

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

和用戶可以寫 'P' 看 'parent1' 和 'parent2' 的建議。 當他選擇並按''。他認爲自己的孩子是建議。

JQuery選項也適用於我。

回答

3

您可以使用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