我正在使用 ember-data-source (0.13)、ember-rails (0.13.0)、ember-source (1.0.0.rc6.2) 和会徽预处理器。
我有以下路由器:
Whistlr.Router.map ()->
@resource('home', path: '/');
@resource('explore');
@resource('organizations')
标题中的这些链接:
li.brand = linkTo 'home'
= t layout.header.whistlr
li = linkTo 'explore'
= t layout.header.explore
li = linkTo 'organizations'
= t layout.header.organizations
我希望链接呈现为:
<a href="/">Whistlr</a>
<a href="/explore">Explore</a>
<a href="/organizations">Organizations</a>
相反,我得到:
<a href="#/">Whistlr</a>
<a href="#/explore">Explore</a>
<a href="#/organizations">Organizations</a>
知道是什么原因造成的吗?