1

我是dust.js的新手。

我正在使用的 JSON 对象中的值之一是“foo,bar,baz”。我可以编写一个帮助器来遍历这些值,例如 # 部分吗?还是有另一种方法可以在不预处理 JSON 对象的情况下做到这一点?

谢谢!

4

1 回答 1

5

答案是肯定的。作为无逻辑模板引擎,dust.js 处理助手内部的所有逻辑。在您的示例中,只需拆分值,在渲染内容时循环值,然后在函数末尾返回所有内容就足够了。

例子:

function($, dust) {
    // helpers object
    var helpers = {
        'h_value' : function(chunk, ctx, bodies, params) {
            var values = ctx.current()
                            .value
                            .split(',');

            for (var i = 0, l = values.length; i < l; i++) {
                chunk.write('<li>'+ values[i] +'</li>');
            }                
        }
    }

    // create a new base context
    // helpers will be part of context now
    var base = dust.makeBase(helpers);

    // this is only an example, you should work with a separate template file    
    var source = '{#sections}<ul>{#h_value}<li>{.}</li>{/h_value}</ul>{/sections}';
    // and template should be compiled on server side (in most cases)
    var compiled = dust.compile(source, 'test');
    dust.loadSource(compiled);

    var sectionsData = {
        sections : [
            { value : 'foo,bar,baz'},
            { value : 'bar,baz,foo'},
            { value : 'baz,foo,bar'}
        ] 
    };

    dust.render('test', base.push(sectionsData), function(err, content) {
        $('body').append(content); 
    });
}
于 2013-04-06T18:57:48.160 回答