我正在寻求在一个屏幕上实现一个网络应用程序,该应用程序具有“编码竞争”的样式,界面包含2个不同的代码编辑器。一个是只读的,另一个是活动的,允许用户编辑。
我目前正在使用Ace编辑器,我发现它非常棒且易于使用。
然而,这是我的问题。 在尝试在一个页面中实现2个不同的编辑器时,我似乎遇到了错误。
未捕获RangeError:超出最大调用堆栈大小
js脚本中的变量“editor”是一个受限制的单词,或者使用哪个变量名无关紧要?
这是我的JS文件中的代码:
var editorFirst = ace.edit("editorFirst");
var editorSecond= ace.edit("editorSecond");
setupEditor();
function setupEditor() {
editorFirst.setTheme("ace/theme/eclipse");
editorFirst.getSession().setMode("ace/mode/javascript");
editorFirst.setShowPrintMargin(false);
editorFirst.setHighlightActiveLine(true);
editorFirst.resize();
editorFirst.setBehavioursEnabled(true);
editorFirst.getSession().setUseWrapMode(true);
document.getElementById('editorFirst').style.fontSize = '14px';
editorSecond.setTheme("ace/theme/eclipse");
editorSecond.getSession().setMode("ace/mode/javascript");
editorSecond.setShowPrintMargin(false);
editorSecond.setHighlightActiveLine(true);
editorSecond.resize();
editorSecond.setBehavioursEnabled(true);
editorReducer.getSession().setUseWrapMode(true);
document.getElementById('editorSecond').style.fontSize = '14px';
}
这是我的html文件代码:
<script src="../assets/js/main.js"></script>
<script src="../assets/js/src/ace.js" type="text/javascript" charset="utf-8"></script>
<div id="editorFirst"></div>
<div id="editorSecond"></div>
提前感谢您的回复!
答案 0 :(得分:20)
我所做的不是使用id编辑器而是将其设置为类代码 然后我只是迭代了每个编辑器。
var editor;
$('.editor').each(function( index ) {
editor = ace.edit(this);
editor.getSession().setMode('ace/mode/csharp');
});
答案 1 :(得分:9)
Ace可以支持任意数量的editors。
问题是最近regression,resize
使编辑height=0
{{1}},{{1}}
答案 2 :(得分:6)
是的,它可以支持。看看我的例子http://jsfiddle.net/igos/qLAvN/
$(function() {
var editor1 = ace.edit("editor1");
editor1.getSession().setMode("ace/mode/java");
var editor2 = ace.edit("editor2");
var editor3 = ace.edit("editor3");
$( "#accordion" ).accordion({
fillSpace: true,
change: function() {
$(editor1).resize();
$(editor2).resize();
$(editor3).resize();
}
});
});
答案 3 :(得分:0)
此方法可以制作ulimited ace编辑器:
<pre class='editor' data-name='editor_1' id='editor_1'></pre>
<input name='editor_1' type='hidden' value='' />
<pre class='editor' data-name='editor_2' id='editor_2'></pre>
<input name='editor_2' type='hidden' value='' />
<pre class='editor' data-name='editor_3' id='editor_3'></pre>
<input name='editor_3' type='hidden' value='' />
<script type="text/javascript">
$(document).ready(function(){
ace.require("ace/ext/language_tools");
var editor;
var ednum = 0;
ace_config = {
maxLines: Infinity,
enableBasicAutocompletion: true,
enableSnippets: true,
enableLiveAutocompletion: false
};
$('.editor').each(function( index ) {
ednum++;
_name = "editor_"+ednum;
code = "var name = $(this).data('name');"
+_name+" = ace.edit(this);"
+_name+".setTheme('ace/theme/chrome');"
+_name+".getSession().setMode('ace/mode/less');"
+_name+".setOptions(ace_config);"
+"var code_"+ednum+" = $('textarea[name='+name+']');"
+_name+".getSession().setValue($('input[name='+name+']').val());"
+_name+".getSession().on('change', function(){"
+"$('input[name='+name+']').val("+_name+".getSession().getValue());"
+"});";
eval(code);
});
</script>