最近在使用ui-router做东西,遇到一个问题,文件目录如下
ui-router
下面这个是index.html里的ui-view
index.html
ui-view
下面是app.js里面的路由配置
app.js
当前url是这样的:
现在我想点击了排名后使网页url变为这个
排名
下面这和是mainPage.html里的代码
mainPage.html
可是我点击了排名后,,却报了这样的错误:
感到不解,求大家帮忙看下,,谢谢
The value of
ui-sref should be the defined state, and
ui-sref = "#/mRange"
was modified to
ui-sref = "mRange"
Remove #/ in ui-sref
The value of
ui-sref should be the defined state, and
should be placed on the pagewas modified to
Remove #/ in ui-sref