如何使用 jquery 模板动态访问一些 json 值
我有以下 json 并假设我无法修改它:
{
"structure": [
{"property": "propA"},
{"property": "propB"}
],
"data": {
"propA": 7,
"propB": "something"
}
}
现在是模板:
{{each structure}}
<span>${data.$value.property}}</span>
{{/each}}
我想要实现的是我所做的 ${data.$value.property}}
具有相同的结果就像我这样做 ${data.propA}
问题:我不知道“propA”存在于“data”json 中。我必须动态地访问该部分
提前致谢!
I have the following json and suppose that I can't modify it:
{
"structure": [
{"property": "propA"},
{"property": "propB"}
],
"data": {
"propA": 7,
"propB": "something"
}
}
Now the template:
{{each structure}}
<span>${data.$value.property}}</span>
{{/each}}
What I want to achieve is that where I do ${data.$value.property}}
have the same result as if I do ${data.propA}
Issue: I don't know that "propA" exists whithin the "data" json. I have to access that part dinamically
thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: