如何计算 jQuery 模板中的表达式

发布于 2024-10-23 12:41:46 字数 400 浏览 3 评论 0原文

我有来自外部 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 技术交流群。

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

发布评论

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

评论(2

日裸衫吸 2024-10-30 12:41:46
${a/b}

根据这个介绍页面,您可以${} 中的任意表达式

${a/b}

According to this intro page, you can have any expression in ${}

枕花眠 2024-10-30 12:41:46

之前进行除法并添加另一个变量以将结果发送到模板。

Make the division before and add another variable to send to the template with the result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文