monaco-editor 常用方法与事件

Posted

tags:

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

参考技术A (参考例子: https://microsoft.github.io/monaco-editor/playground.html#extending-language-services-custom-languages )

(若需要自定义注释和关键字等高亮显示颜色,参考: https://microsoft.github.io/monaco-editor/monarch.html )

在vue项目中使用monaco-editor

monaco-editor: https://github.com/Microsoft/monaco-editor

在ESM中的使用官方也有对应文档:https://github.com/Microsoft/monaco-editor/blob/master/docs/integrate-esm.md

现基于vue-cli2的项目做具体步骤说明:

1. 安装:

cnpm install monaco-editor --save

cnpm install monaco-editor-webpack-plugin --save-dev

 

2. 修改webpack.base.conf.js配置文件

const MonacoWebpackPlugin = require(‘monaco-editor-webpack-plugin‘);
...

module.exports = {
  ...
  plugins: [
    ...
    new MonacoWebpackPlugin()
  ]
};

 

3. 在对应的组件中使用

.vue

<template>
  <div>
     <div id="container" ></div>
  </div>
</template>

.ts

import { Vue, Component, Watch } from "vue-property-decorator"
import * as monaco from ‘monaco-editor‘;

@Component({

})

export default class Parent extends Vue {
    ...
    value = ‘初始sql语句‘;
monacoEditor; mounted() {
this.monacoEditor = monaco.editor.create(document.getElementById(‘container‘), { value: this.value, language: ‘sql‘ }); } }

注意:要等container渲染成功才能monaco.editor.create

 

-------------------------------------------------------------------------------------------- 其他问题 -----------------------------------------------------------------------------------------

 

1. 怎么用代码方式改变this.monacoEditor的value值?

答: this.monacoEditor.setValue(newValue);


以上是关于monaco-editor 常用方法与事件的主要内容,如果未能解决你的问题,请参考以下文章

WebView使用详解——WebViewClient与常用事件监听

JavaScript常用事件和方法

常用的jQuery事件方法

javascript中常用的事件绑定方法

html文本框控件的常用属性、事件和方法

JS常用事件兼容性处理方法