已知对象,如何根据模板字符串分别渲染对象中数组每个元素?

发布于 2022-09-13 01:13:40 字数 377 浏览 33 评论 0

已知一个对象

const data = {
    age: 1,
    person: [
        { name: "bdd", date: "44444" },
        { name: "b222dd", date: "666" }
    ]
} 

现在提供模板

const expression = "{{person.name}}###{{person.date}}"

应该如何编写函数能输出以下字符串?

bdd###444,b222dd#666

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一笑百媚生 2022-09-20 01:13:40

person 是一个数组。


 var arr = {age:1,person:[{name:'bdd',date:'44444'},{name:'b222dd',date:'666'}]}
 var expression = '{{person[0].name}}###{{person[0].date}}'

const tpl = (str='', data={}, config={
  open: '{{',
  close: '}}'
})=>str.split(config.open).reduce((acc,cur)=>(([variate,...other] = cur.split(config.close)),acc+=(new Function('data',`return data?.${variate||'_'}||"";`)(data))+other),'');
console.log(tpl(expression,arr));

bdd###44444

https://segmentfault.com/q/10...

旧故 2022-09-20 01:13:40
const data = {
    age: 1,
    person: [
        { name: "bdd", date: "444" },
        { name: "b22dd", date: "666" },
    ]
}
const expression = "{{person.name}}###{{person.date}}"

const tpl = (s, d) => {
    const mem = []
    let len, j = 0
    const t = s.replace(/\{\{(.+?)\}\}/g, (_, p) => {
        const v = p.trim().split(".").reduce((a, v) => {
            if (! a) return console.error(`{{${p}}} is null before "${v}"`)
            if (a instanceof Array) {
                const c = a.map(o => o[v])
                len = c.length
                return c
            }
            return a[v]
        }, d)
        mem[j] = v
        return `@@${j ++}@@`
    })
    console.log(mem)
    return Array.from({ length: len }, (_, i) => t.replace(/@@(\d+)@@/g, (_, j) =>  mem[j] instanceof Array ? mem[j][i] : mem[j]))
}
console.log(tpl(expression, data).join(","))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文