在 jQuery 模板中使用返回值

发布于 2024-11-17 15:32:13 字数 412 浏览 2 评论 0原文

经过一番澄清后,我重申我的问题如下。

jquery 模板 中我有一些东西。像这样使用函数的返回值会很混乱吗?

<p class="hidden">${$data.score = getScore(results)}</p>

{{tmpl(homeTeam, {score: score}) "#scoreTemplate"}}

可以简化吗?如下所示,不幸的是,这并不能解决问题?

{{tmpl(homeTeam, {score: getScore(results)}) "#scoreTemplate"}}

非常感谢,
罗布森

After some clarification I restate my question as follows.

In a jquery template I've got sth. messy like this to use a return value of a function

<p class="hidden">${$data.score = getScore(results)}</p>

{{tmpl(homeTeam, {score: score}) "#scoreTemplate"}}

Can this be simplified - like the following, which unfortunately doesn't do the trick?

{{tmpl(homeTeam, {score: getScore(results)}) "#scoreTemplate"}}

Many thanks,
Robson

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

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

发布评论

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

评论(1

寄居者 2024-11-24 15:32:13

尝试这样的事情,

{{tmpl(
homeTeam, 
{
     teamRole: 'homeTeam', 
     score: d = getScoreByMatch($data, true)
}
) "#scoreTemplate"}}

OR

{{tmpl(
roadTeam, 
{
    teamRole: 'roadTeam', 
    score: d = ${getScoreByMatch($data, false)}
}
) "#scoreTemplate"}}

我从未使用过 jquery 模板。但是这个 score: d = getScoreByMatch($data, true) 语法可以在 JavaScript 中使用。

我所做的只是引入一个变量来从 getScoreByMatch() 方法获取结果,然后将该变量的值分配给 score 属性。

我不确定它是否有效,但请尝试一下。

Try something like this,

{{tmpl(
homeTeam, 
{
     teamRole: 'homeTeam', 
     score: d = getScoreByMatch($data, true)
}
) "#scoreTemplate"}}

OR

{{tmpl(
roadTeam, 
{
    teamRole: 'roadTeam', 
    score: d = ${getScoreByMatch($data, false)}
}
) "#scoreTemplate"}}

I have never worked with jquery templates. But this score: d = getScoreByMatch($data, true) syntax will work in javascript.

What i did is just introduced a variable to get the result from getScoreByMatch() method and then assigning that variable's value to the score property.

I am not sure about it will work or not, but just give a try and see.

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