我想通过username
或在我的网络应用程序上显示个人资料页面user_id
。我试过以下没有成功,有什么想法吗?
MyApplication.Router.map(function () {
this.resource('user', { path: '/user' }, function () {
this.resource('profile', {path: '/profile/id/:user_id'});
this.resource('profile', {path: '/profile/:user_username'});
});
this.resource('notFound', {path: '/notfound'});
});