如何将对象中的参数传递给流星中的路径?

时间:2015-07-03 10:32:51

标签: meteor handlebars.js iron-router meteorite

下面是我的对象。我想发送对象内的“554b9960f046be881a344779”。

{
  _id: {
    _str : "554b9960f046be881a344779"
   },
  title : "Hello world"
}

我试过了<a href="{{pathFor 'article' _id = _id._str}}" > {{title}} </a>但是没有用。

1 个答案:

答案 0 :(得分:1)

你确定你有数据上下文吗?试试this

<a href="{{pathFor 'article' _id = this._id._str}}" > {{title}}  </a>

它也可以在没有this的情况下工作,确保您有可用的数据上下文