您好,登錄后才能下訂單哦!
這篇文章主要講解了“VUE3中如何使用JSON編輯器”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“VUE3中如何使用JSON編輯器”吧!
npm install json-editor-vue3 yarn add json-editor-vue3
// 導入模塊 import JsonEditorVue from 'json-editor-vue3' // 注冊組件 components: { JsonEditorVue },
我們傳給后端也是通過這種形式,就可以通過后端拿到的數據進行JSON與String之間轉換
// 后端拿到的數據 configValue:"{\"isBigTree\":true,\"needContact\":true,\"needProvinceCity\":true,\"needDetailAddress\":true,\"needReservationCheckSms\":false,\"BigTreeReservationConfig\":{\"orderApiUrl\":\"https://api.bigtreedev.com/openplatform/openApi/api/order/create/notification/v001?sign=\",\"reservationApiUrl\":\"https://api.bigtreedev.com/openplatform/openApi/api/service/appointment/create/service/appointment/v001?sign=\",\"cancelApiUrl\":\"https://api.bigtreedev.com/openplatform/openApi/api/order/unsubscribe/notification/v001?sign=\",\"companyNo\":\"C400020\",\"verNo\":\"v001\",\"secretKey\":\"72CDFFD7F63D8662B6E1873FEA14EB24\",\"signSecretId\":\"0BBF774D11C0A053A6C2A2E36E6C6C2E2C55D483\"}}" // 我們通過JSON.parse()進行轉換 let isJson = JSON.parse(configValue) // 這樣我們拿到的就是JSON格式的了,可以渲染出來的 // 我們傳給后端的數據也要將JSON轉成字符串,通過JSON.stringify() let isString = JSON.stringify(configValue) // 這樣我們拿到的就是String格式的了,直接傳給后端
<template> <div> <json-editor-vue v-model="jsonData" class="editor" :current-mode="currentMode" /> </div> </template> <script> // 導入模塊 import JsonEditorVue from 'json-editor-vue3' export default defineComponent({ name: 'EnterpriseList', // 注冊組件 components: { JsonEditorVue, }, setup() { const state = reactive({ currentMode: 'tree' }) return { ...toRefs(state), } }, }) } </script>
參數 | 類型 | 描述 | 默認 |
---|---|---|---|
modelValue | Object | 要編輯的json值 | |
options | Object | jsoneditor的options,參考configuration-options | |
currentMode | String | 當前編輯模式 | code |
modeList | Array | 可選的編輯模式列表 | [“tree”, “code”, “form”, “text”, “view”] |
language | Array | 語言 | en |
Name | Description |
---|---|
update:modelValue | json 更新 |
change | json 更新 |
textSelectionChange | 參考configuration-options對應參數,參數有重寫,第一個參數為編輯器的實例,后續參數與官方參數相同 |
selectionChange | 參考configuration-options對應參數,參數有重寫,第一個參數為編輯器的實例,后續參數與官方參數相同 |
focus | 參考configuration-options對應參數,參數有重寫,第一個參數為編輯器的實例,后續參數與官方參數相同 |
blur | 參考configuration-options對應參數,參數有重寫,第一個參數為編輯器的實例,后續參數與官方參數相同 |
colorPicker | 參考configuration-options對應參數,參數有重寫,第一個參數為編輯器的實例,后續參數與官方參數相同 |
感謝各位的閱讀,以上就是“VUE3中如何使用JSON編輯器”的內容了,經過本文的學習后,相信大家對VUE3中如何使用JSON編輯器這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。