我正在学习angularjs并创建了一个演示应用程序。
Here is the
plunker
在该应用程序中,我无法使路由正常工作。
当" / main"路线工作完美,但" / user /:username"没用。
有人可以帮我找出问题吗?
由于
答案 0 :(得分:3)
"teplateUrl"
中有拼写错误。将其更改为"templateUrl"
可以解决您的问题。
.when("/user/:username", {
"controller": "UserController",
"templateUrl": "user.html"
})
更新了小提琴here。