如何计算 jQuery 模板中的表达式
我有来自外部 JSON 源的数据,我想使用 jQUery 模板显示这些数据。有 2 个整型变量。我需要在 jQuery Templates 模板字符串中将其一一分开。现在模板字符串看起来像这样:
templateNumbers="${a}, ${b}"
我不仅想显示这两个数字,还想显示一个数字除以另一个数字的结果。
JSON 看起来像这样:
[
{
a: 5,
b: 1,
},
{
a: 7,
b: 2,
}
]
我尝试使用“${a/b}”,但它不起作用,可能是因为我有一个数组,也许我应该使用 $item? 我该怎么做? 谢谢!
I have data from an external JSON source that I want to display using jQUery templates. There are 2 integer variables. I need to divide one by another inside my jQuery Templates template string. Now template string looks like this:
templateNumbers="${a}, ${b}"
I want not just to show these two numbers, but show a result of a dividing one by another.
JSON looks like this one:
[
{
a: 5,
b: 1,
},
{
a: 7,
b: 2,
}
]
I tried to use "${a/b}" but it doesn't work, may be because I have an array and may be I should play with $item?
How can I do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据这个介绍页面,您可以${} 中的任意表达式
According to this intro page, you can have any expression in ${}
之前进行除法并添加另一个变量以将结果发送到模板。
Make the division before and add another variable to send to the template with the result.