function config($routeProvider){
$routeProvider
.when('/',{
templateUrl: '../templates/main/login/login.html'
})
.when('/login',{
templateUrl: '../templates/main/login/login.html'
})
.otherwise({ redirectTo:"/" });
}
结构:
- application(php stuff)
- webroot
-- app
--- app.js
-- templates
--- main
---- login
----- login.html
index.html (with angularjs libs)
我遇到了问题,因为如果我将网址写为“local.domain.com/#login” 它成为“local.domain.com /#/ login”
login.html:
<div>LOGIN test template</div>
我不明白我的小代码有什么问题
PS:我正试图将前端从EJS(js lib)移到Angularjs