我想根据部分数据集(JSON)在div上添加一个类。这就是我所拥有的
数据:

{
    "title":"energy star",

    "cat":"power",

    "diff":"Investment",
    "description":"When purchasing appliances, consider buying 'energystar' certified appliances to radically reduce the amount of electricity used by older appliances.",
    "links":[
        {
            "title":"The Official Website of Energystar",
            "url":"http://www.energystar.gov"
        }
    ],
    "cost":"$60+"
},
{
    "title":"shut the faucet",
    "cat":"water",
    "diff":"No-Cost",
    "description":"Turn off the water while you brush your teeth. There is never a good reason for waste.",
    "cost":"$0"
},`


这是我的模板

        {{#each this}}
        {{#addClasses}}
        {{/addClasses}}

        <div class="tip_whole">
            <div class="tip_header">
                <h5 class="tip_title">
                    <b>{{title}}</b> - {{diff}}
                </h5>
                <div class="tip_social">
                    <a href=""><img src="IMG/media/twitter_16.png" alt="twiter link"/></a>
                    <a href=""><img src="IMG/media/facebook_16.png" alt="facebook link"/></a>
                    <a href=""><img src="IMG/media/email_16.png" alt="email link"/></a>
                </div>
            </div>{{!end .tip_title}}
            <div class="tip_body">
                <div class="grid_20 alpha">
                    <p class="tip_desc">{{description}}</p>
                    {{#if links}}
                        <div class="tip_links">
                        <h5>More information</h5>
                        {{#each links}}
                                <a href="{{url}}" class="tip_link" target="_blank">{{title}}</a>
                        {{/each}}
                        </div>{{!end .tip_links}}
                    {{/if}}
                </div>{{!end .grid_20 alpha}}
                <div class="grid_19 push_2">
                    <h2 class="tip_cost_title">Avg. Cost to Implement</h2>
                    <h1 class="tip_cost_title">{{cost}}</h1>
                </div>
            </div>{{!end .tip_body}}
        </div>{{!end .tip_whole}}
    {{/each}}


这是我的助手功能

Handlebars.registerHelper("addClasses",function(){
    if(this.cat=="water"){
            console.log('water');
            $(".tip_whole").addClass("water");
        } else {
            console.log('no water here');
        }
});//end of helper function


它会正确记录是否有水,但不会添加类,只会影响经过硬编码的“ .tip_whole”,而不会影响由把手创建的类

最佳答案

该帮助程序将不起作用,因为当您说.tip_whole$(".tip_whole")不在DOM中,因此最终您根本没有添加water类。您将不得不更改您的帮助程序以将一个类(或什么都没有)作为字符串返回:

Handlebars.registerHelper("addClasses", function() {
    return this.cat == 'water' ? 'water' : '';
});


然后在需要的地方使用该帮助程序:

<div class="tip_whole {{addClasses}}">


演示:http://jsfiddle.net/ambiguous/SSPSY/

09-17 14:46
查看更多