angularjs 路由无法正常工作

angularjs routing not working properly

我正在学习 angularjs 并创建了一个演示应用程序。

Here is the plunker

在该应用程序中,我无法使路由正常工作。

当“/main”路由正常工作但“/user/:username”不工作时。

谁能帮我找出问题所在?

谢谢

您在 "teplateUrl" 中有错字。将其更改为 "templateUrl" 可解决您的问题。

.when("/user/:username", {
    "controller": "UserController",
    "templateUrl": "user.html"
})

已更新 fiddle here