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

How to pass parameter which is in object to pathfor in meteor?

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

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

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

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

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

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