Skip to content

JSON 格式化工具

字符串长度:0

实现原理

js
const zip = () => {
    try {
        text.value = JSON.stringify(JSON.parse(text.value))
    } catch (e) {
        ElMessage.error(e.message)
    }
}
const unzip = () => {
    try {
        text.value = JSON.stringify(JSON.parse(text.value), null, 4)
    } catch (e) {
        ElMessage.error(e.message)
    }
}
const len = computed(() => text.value.length)

const encodeN = () => {
    text.value = text.value.replaceAll('"', '\\"')
}
const decodeN = () => {
    text.value = text.value.replaceAll('\\"', '"')
}
const b64Encode = () => {
    zip()
    text.value = btoa(text.value)
}
const b64Decode = () => {
    text.value = atob(text.value)
    unzip()
}
const clean = () => {
    text.value = ''
}
评论区
评论区空空如也
发送评论
名字
0 / 20
邮箱
0 / 100
评论内容
0 / 140
由于是非实名评论,所以不提供删除功能。如果你需要删除你发送的评论,或者是其他人的评论对你造成了困扰,请 发邮件给我 。同时评论区会使用 AI + 人工的方式进行审核,以达到合规要求。

© thebestxt.cc
辽ICP备16009524号-8
本站所有文章版权所有,转载请注明出处