flow-routing中iron-routing的pathFor函数的替代函数是哪个函数?

which function is the replacement function of ‘pathFor’ function of iron-routing in flow-routing?

我使用来自 meteor.js 的 orionjs: 我改了orionjs的博客例子(https://github.com/orionjs/examples/tree/master/blog)

我用useraccounts:flow-路由替换useraccouts:iron-路由包:

<a href="{{ pathFor 'dictionary.update' }}">edit</a>

哪个包负责parsing和pathFor,什么意思? 如果我继续使用 flow-routing 包,我该如何处理 pathFor 函数?

这就是我使用 React、Meteor 和 Flow Router 的方法

<a href="{FlowRouter.path('/')}">edit</a>

查看这个用例示例https://github.com/arunoda/hello-react-meteor/blob/master/both/components/post_page.jsx#L14

这里是文档 https://github.com/kadirahq/flow-router#flowrouterpathpathdef-params-queryparams

我找到了 arillo:flow-router-helpers 包。 https://github.com/arillo/meteor-flow-router-helpers

那里有完全替换功能"pathfor"。