gpt4 book ai didi

javascript - 使用 CodeMirror 作为 elFinder 编辑器

转载 作者:行者123 更新时间:2023-11-30 06:27:08 25 4
gpt4 key购买 nike

带有 elFinder 的 CodeMirror!无法在任何地方找到示例,因此必须弄清楚。最后证明它真的很简单,但花了一点时间才弄明白,所以我发布这个是因为最终肯定会有人需要它。

$().ready(function() {

var elf = $('#elfinder').elfinder({
url : 'elfinder-2.0-rc1/php/connector.php',

commandsOptions: {

edit : {
// list of allowed mimetypes to edit
// if empty - any text files can be edited
mimes : ['text/plain', 'text/html', 'text/javascript', 'text/css'],

// you can have a different editor for different mimes
editors : [{

mimes : ['text/plain', 'text/html', 'text/javascript', 'text/css'],

load : function(textarea) {

this.myCodeMirror = CodeMirror.fromTextArea(textarea, {
lineNumbers: true,
theme: "xq-dark"
})
},

close : function(textarea, instance) {
this.myCodeMirror = null;
},


save : function(textarea, editor) {
textarea.value = this.myCodeMirror.getValue();
this.myCodeMirror = null;
}

} ] //editors
} //edit

} //commandsoptions

}).elfinder('instance');

});

最佳答案

答案在上面!我真的应该问这个问题然后回答它。对不起。

关于javascript - 使用 CodeMirror 作为 elFinder 编辑器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20359471/

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