我正在創建一個角度的應用程序,我需要每個用戶都有其單獨的頁面。在角js的網址中添加id
localhost/{username}
下面
是我的路由PARAM,
app.config(function($routeProvider) {
$routeProvider
.when('/', {
templateUrl : '../../views/index_old.html',
})
.when('/email/signup', {
templateUrl : '../../views/emailsignup.html',
controller : 'myCont'
})
.when('/email/code/', {
templateUrl : '../../views/emailcode.html',
controller : 'codeCheck'
})
.when('/user/basic/', {
templateUrl : '../../views/basicInfo.html',
controller : 'userbasicInfo'
})
.when('/user/location/', {
templateUrl : '../../views/userLocation.html',
controller : 'userLocation'
})
});
我不能夠通過用戶名中的URL。 有沒有辦法做到這一點。
你的意思是你想通過用戶名作爲參數? –
是的,我需要像about.me網站提供的東西。 about.me/ashishverma〜ashishverma〜是一個用戶名 –