3

我正在使用 NodeJS/Express3 和dusts-linkedin 并且想做相当于:

for(var i = locals.first;i < (locals.first + locals.pages); $i++) {
    <div>i</div>
}

我想我需要创建一个辅助函数,但不清楚如何做

4

1 回答 1

5

好的。就我而言,我试图创建一个寻呼机,但我将稍微简化一下答案,以便人们可以了解总体思路。可能有一种更清洁的方法来做到这一点。

我的助手将被称为“寻呼机”。我想传递一些本地变量。它们是 locals.start 和 locals.end - 每个都是代表我的寻呼机开始和结束的数字。我还将传递一个用于寻呼机的 url。

在我的模板中,我调用了助手以及我可能需要的所有参数:

{@pager start="{locals.start}" end="{locals.end}" url="/articles?page=%page%"/}

然后在我的应用程序中添加这个助手。我需要确保我的灰尘模块存在:

cons = require('consolidate'),
dust = require('dustjs-linkedin'),

然后创建助手:

dust.helpers['pager'] = function(chunk, context, bodies, params) {

  //tapping these to get the actual value (since we passed vsaraibles) and casting as a number with '+'
  first = +dust.helpers.tap(params.first, chunk, context);
  last = +dust.helpers.tap(params.last, chunk, context);

  //this one is all ready since we just passed a string
  url = params.url;

  //build our html - do whatever you need here - this is an example
  var html = '<ul>';
  for(var i = first; i <= last; i++) {
    //I used a replace and placeholder - prob other methods you can use
    html += '<li><a href="' + url.replace('%page%', i) + '">' + i '</a></li>';
  }
  html += '</ul>';

  //write this back to the template
  chunk.write(html);

  //return it
  return chunk;
};

希望这可以帮助某人

于 2012-08-23T21:17:06.953 回答