JS 将JSON映射到字符串中格式化输出
Posted 流星蝴蝶没有剑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 将JSON映射到字符串中格式化输出相关的知识,希望对你有一定的参考价值。
json 映射到字符串中,不在用字符串链接
String.prototype.format = function (kwargs)
return this.replace(/\\(\\w+)\\/g, function (k, v)
return kwargs[v]
);
;
let j =
name: "张三",
age: 25,
descr: "haha",
let html = '我是name<br>年龄是age<br>我的个人描述descr'
html.format(j)
console.log(html) // '我是张三<br>年龄是25<br>我的个人描述haha'
以上是关于JS 将JSON映射到字符串中格式化输出的主要内容,如果未能解决你的问题,请参考以下文章