1、使用x2js插件,vue为例:

   1.  安装依赖: npm 或  yarn

npm install x2js

或

yarn install x2js

   2.  vue2 或 vue3 全局使用

vue2 使用方法:
// main.js 全局引用
import x2js from 'x2js'
// 挂载
Vue.prototype.$x2js = new x2js()

// 组件内使用
//xml转json
this.$x2js.xml2js('具体内容')
//json转xml
this.$x2js.js2xml('具体内容')

vue3 使用方法:
const app = createApp(App);
// main.js 全局引用
import x2js from 'x2js'
// 挂载
app.config.globalProperties.$x2js = new x2js()

// 组件内使用
//xml转json
this.$x2js.xml2js('具体内容')
//json转xml
this.$x2js.js2xml('具体内容')

实例:
const bcStatus = '<bc-status>true</bc-status>',
//vue2 或 vue3
//xml转json
const value = this.$x2js.xml2js(bcStatus) 
//打印
console.log(value); //{'bc-status':true}

   3.  vue2 或 vue3 局部使用

vue2 或 vue3 使用方法:
//组件内引用
import x2js from 'x2js'
//插件使用
const X2JS = x2js;
//xml转json
X2JS.xml2js('具体内容')
//json转xml
X2JS.js2xml('具体内容')

实例:
const bcStatus = '<bc-status>true</bc-status>',
//vue2 或 vue3
//xml转json
const value = X2JS.xml2js(bcStatus)
//打印
console.log(value); //{'bc-status':true}

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐