CodeMirror的使用方法

Posted wuting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeMirror的使用方法相关的知识,希望对你有一定的参考价值。

这里是利用vue来开发项目:
1、利用textare生成编辑器
 <textarea ref="textarea"></textarea>

2、创建编辑器对象
 let editJson = CodeMirror.fromTextArea(this.$refs.textarea, {
    mode: ‘application/json‘, // json数据高亮
    lineNumbers: true, // 显示行号
    theme: ‘eclipse‘, //设置主题
    lineWrapping: ‘wrap‘, // 文字过长时,是换行(wrap)还是滚动(scroll),默认是滚动
    showCursorWhenSelecting: true, // 文本选中时显示光标
    cursorHeight: 0.85, //光标高度,默认是1
    // 代码折叠
    lineWrapping: true,
    foldGutter: true,
        gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"],
    matchBrackets: true, // 括号匹配
    smartIndent: true, // 智能缩进
    // 智能提示
    extraKeys:{
        "Alt-/": "autocomplete", "F11": function (cm) {
            cm.setOption("fullScreen", !cm.getOption("fullScreen"));
        }
    }
 });
 // 设置初始值
 editJson.setValue("输入代码
")
 // 获取编辑器的值
 editJson.getValue()

 

以上是关于CodeMirror的使用方法的主要内容,如果未能解决你的问题,请参考以下文章

codemirror输入反应慢

codemirror生成小程序报错未找到

如何使用 codemirror 启用代码提示?

在线代码编辑器CodeMirror简介

CodeMirror---实现关键词高亮

在线代码编辑器---codemirror插件