JQuery 模板 - 调用 ${$item.function()} 的次数多于模板中指定的次数

发布于 2024-12-07 11:19:17 字数 942 浏览 0 评论 0原文

Jquery-tmpl 似乎多次调用您附加到 item 的函数。

JSfiddlehttp://jsfiddle.net/abQwc/2/

对于模板呈现的每个项目,console.log 的 show rowCount 被调用 4 次。

模板:

<h1 class="${$item.rowCount() % 2 == 0 ? "even" : "odd"}">${Name} - ${Payload}</h1

数据:

    data = [
        { Name: "1", Payload: "Data1" },
        { Name: "2", Payload: "Data2" },
        { Name: "3", Payload: "Data3" } 
    ]

脚本:

    $(function() {$( "#template" )
        .tmpl(data, {
            rowCount: function(){
                var rowCount = 0;
                return function(){
                    console.log(this.data.Payload);
                    return ++rowCount;
                }
            }()
        })
        .appendTo( "body" )})

为什么?我已经想出了如何绕过它,但它散发着巫术的味道。

Jquery-tmpl seems to call functions you attach to item multiple times.

JSfiddle: http://jsfiddle.net/abQwc/2/

The console.log's show rowCount got called 4 times for each item rendered by the template.

Template:

<h1 class="${$item.rowCount() % 2 == 0 ? "even" : "odd"}">${Name} - ${Payload}</h1

Data:

    data = [
        { Name: "1", Payload: "Data1" },
        { Name: "2", Payload: "Data2" },
        { Name: "3", Payload: "Data3" } 
    ]

Script:

    $(function() {$( "#template" )
        .tmpl(data, {
            rowCount: function(){
                var rowCount = 0;
                return function(){
                    console.log(this.data.Payload);
                    return ++rowCount;
                }
            }()
        })
        .appendTo( "body" )})

Why? I've already figured out how to get around it, but it reeks of witchcraft.

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

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

发布评论

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

评论(1

萌吟 2024-12-14 11:19:17

我替换:

${$item.rowCount() % 2 == 0 ? "even" : "odd"}
...
return function(){
    console.log(this.data.Payload);
    return ++counter;
}

${$item.rowCount()}
....
return function() {
    console.log(this.data.Payload);
    return (++counter) % 2 ? 'even' : 'odd';
}

能够让它工作。然而,Options 参数仍然为每个项目执行 4 次。我相信 tmpl 中的计算充其量仍然是不确定的。

I replaced:

${$item.rowCount() % 2 == 0 ? "even" : "odd"}
...
return function(){
    console.log(this.data.Payload);
    return ++counter;
}

with

${$item.rowCount()}
....
return function() {
    console.log(this.data.Payload);
    return (++counter) % 2 ? 'even' : 'odd';
}

and was able to get it to work. However, the Options parameter was still getting executed 4 times for each item. I believe calculations like that in tmpl are still iffy at best.

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