我在Angular应用程序中使用$ routeProvider。我有8条不同的路线。当我在浏览器中输入
时它加载我的主路线
然后我必须手动将signUp添加到URL
知道它为什么要加载主路线而不是指定的路线?
感谢您的帮助!
答案 0 :(得分:-1)
尝试像这样编辑:
$routeProvider.when("/", {
templateUrl: "templates/landingPage.html",
});
$routeProvider.when("/signUp", {
templateUrl: 'templates/signInView.html',
controller:"PageController"
});