当前位置:   article > 正文

vue3+ts 使用vue3-ace-editor实现Json编辑器

vue3-ace-editor

1、效果图

输入代码,点击格式化就出现以上效果,再点击压缩,是以下效果
2、安装

npm i vue3-ace-editor

3、使用

新建aceConfig.js文件

  1. // ace配置,使用动态加载来避免第一次加载开销
  2. import ace from 'ace-builds'
  3. // 导入不同的主题模块,并设置对应 URL
  4. import themeGithubUrl from 'ace-builds/src-noconflict/theme-github?url'
  5. ace.config.setModuleUrl('ace/theme/github', themeGithubUrl)
  6. import themeChromeUrl from 'ace-builds/src-noconflict/theme-chrome?url'
  7. ace.config.setModuleUrl('ace/theme/chrome', themeChromeUrl)
  8. import themeMonokaiUrl from 'ace-builds/src-noconflict/theme-monokai?url'
  9. ace.config.setModuleUrl('ace/theme/monokai', themeMonokaiUrl)
  10. // 导入不同语言的语法模式模块,并设置对应 URL (所有支持的主题和模式:node_modules/ace-builds/src-noconflict)
  11. import modeJsonUrl from 'ace-builds/src-noconflict/mode-json?url'
  12. ace.config.setModuleUrl('ace/mode/json', modeJsonUrl)
  13. import modeJavascriptUrl from 'ace-builds/src-noconflict/mode-javascript?url'
  14. ace.config.setModuleUrl('ace/mode/javascript', modeJavascriptUrl)
  15. import modeHtmlUrl from 'ace-builds/src-noconflict/mode-html?url'
  16. ace.config.setModuleUrl('ace/mode/html', modeHtmlUrl)
  17. import modePythonUrl from 'ace-builds/src-noconflict/mode-python?url'
  18. ace.config.setModuleUrl('ace/mode/yaml', modePythonUrl)
  19. // 用于完成语法检查、代码提示、自动补全等代码编辑功能,必须注册模块 ace/mode/lang _ worker,并设置选项 useWorker: true
  20. import workerBaseUrl from 'ace-builds/src-noconflict/worker-base?url'
  21. ace.config.setModuleUrl('ace/mode/base', workerBaseUrl)
  22. import workerJsonUrl from 'ace-builds/src-noconflict/worker-json?url' // for vite
  23. ace.config.setModuleUrl('ace/mode/json_worker', workerJsonUrl)
  24. import workerJavascriptUrl from 'ace-builds/src-noconflict/worker-javascript?url'
  25. ace.config.setModuleUrl('ace/mode/javascript_worker', workerJavascriptUrl)
  26. import workerHtmlUrl from 'ace-builds/src-noconflict/worker-html?url'
  27. ace.config.setModuleUrl('ace/mode/html_worker', workerHtmlUrl)
  28. // 导入不同语言的代码片段,提供代码自动补全和代码块功能
  29. import snippetsJsonUrl from 'ace-builds/src-noconflict/snippets/json?url'
  30. ace.config.setModuleUrl('ace/snippets/json', snippetsJsonUrl)
  31. import snippetsJsUrl from 'ace-builds/src-noconflict/snippets/javascript?url'
  32. ace.config.setModuleUrl('ace/snippets/javascript', snippetsJsUrl)
  33. import snippetsHtmlUrl from 'ace-builds/src-noconflict/snippets/html?url'
  34. ace.config.setModuleUrl('ace/snippets/html', snippetsHtmlUrl)
  35. import snippetsPyhontUrl from 'ace-builds/src-noconflict/snippets/python?url'
  36. ace.config.setModuleUrl('ace/snippets/javascript', snippetsPyhontUrl)
  37. // 启用自动补全等高级编辑支持,
  38. import extSearchboxUrl from 'ace-builds/src-noconflict/ext-searchbox?url'
  39. ace.config.setModuleUrl('ace/ext/searchbox', extSearchboxUrl)
  40. // 启用自动补全等高级编辑支持
  41. import 'ace-builds/src-noconflict/ext-language_tools'
  42. ace.require('ace/ext/language_tools')

4、在页面使用

  1. <template>
  2. <div>
  3. <div class="flex justify-between mb-2">
  4. <el-tag color="#eff0ff" effect="light">json</el-tag>
  5. <div>
  6. <el-button color="#8769db" size="small" @click="jsonFormat">{{ $t('format') }}</el-button>
  7. <el-button size="small" @click="jsonNoFormat">{{ $t('zip') }}</el-button>
  8. </div>
  9. </div>
  10. <v-ace-editor
  11. v-model:value="content"
  12. lang="json"
  13. theme="chrome"
  14. :options="options"
  15. class="w-full text-base pt-5"
  16. :readonly="options.readOnly"
  17. />
  18. </div>
  19. </template>
  20. <script lang="ts" setup>
  21. import { ref, reactive, watch } from 'vue'
  22. import emitter from '@/utils/emitter'
  23. import { VAceEditor } from 'vue3-ace-editor'
  24. import './aceConfig.js'
  25. const content = ref('') // 显示的内容
  26. const options = reactive({
  27. useWorker: true, // 启用语法检查,必须为true
  28. enableBasicAutocompletion: true, // 自动补全
  29. enableLiveAutocompletion: true, // 智能补全
  30. enableSnippets: true, // 启用代码段
  31. showPrintMargin: false, // 去掉灰色的线,printMarginColumn
  32. highlightActiveLine: false, // 高亮行
  33. highlightSelectedWord: true, // 高亮选中的字符
  34. tabSize: 4, // tab锁进字符
  35. fontSize: 14, // 设置字号
  36. wrap: false, // 是否换行
  37. readOnly: false, // 是否可编辑
  38. minLines: 1, // 最小行数,minLines和maxLines同时设置之后,可以不用给editor再设置高度
  39. maxLines: 50, // 最大行数
  40. })
  41. // JSON格式化
  42. const jsonFormat = () => {
  43. try {
  44. content.value = JSON.stringify(JSON.parse(content.value), null, 2)
  45. } catch (e) {
  46. jsonError(e)
  47. }
  48. }
  49. // JSON压缩
  50. const jsonNoFormat = () => {
  51. try {
  52. content.value = JSON.stringify(JSON.parse(content.value))
  53. } catch (e) {
  54. jsonError(e)
  55. }
  56. }
  57. watch(
  58. () => content.value,
  59. (newContent) => {
  60. emitter.emit('handleCondition', newContent)
  61. },
  62. { deep: true, immediate: true },
  63. )
  64. const jsonError = (e: any) => {
  65. console.log(`JSON字符串错误:${e.message}`)
  66. }
  67. </script>
  68. <style>
  69. .ace_gutter {
  70. background-color: transparent !important;
  71. }
  72. .ace-chrome .ace_gutter-active-line {
  73. background-color: transparent !important;
  74. }
  75. </style>

参考:vue3-ace-editor使用记录-CSDN博客

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/891407
推荐阅读
相关标签
  

闽ICP备14008679号