我正在为我的流星项目使用铁路由器,一切都很顺利,但我遇到了一些奇怪的行为。
我为看起来像这样的项目列表设置了一个循环。
{{#each list_items}}
<div>{{user.username}}
<a href="{{link}}">Click here!</a>
</div>
{{/each}}
我的用户的 JSON 对象如下所示:
{
user: {
username: jdoe
},
images: {
low-res-url: http://example.com
},
link: http://example.com/profile
}
现在 {{user.username}} 按预期显示,但是当我尝试将 {{link}} 放在 href 中时,我收到来自 Iron-router 的错误消息
"You called Router.path for a route named undefined but that that route doesn't seem to exist. Are you sure you created it?"
任何帮助或建议将不胜感激。