我有幾個問題關於$location.path(/helpmeunderstand)
。我有一個login()
方法和證書成功我想瀏覽$location.path(/login/:username)
,但它不顯示登錄的用戶的名稱,而只是顯示,/login/:username
。
請注意我在$scope.function
裏面這樣做,但不起作用。
$scope.isValidUser = function() {
gitHubApiFactory.getUserName($scope.gitUserName)
.success(function (user) {
$scope.gitUser = user;
$scope.loaded = true;
$location.path("/login/{{user.login}}");
console.log(user);
})
.error(function(data, status, headers, config) {
$scope.userNotFound = true;
$log.log(data.error + ' ' + status);
});
任何建議是值得歡迎的。
謝謝
向我們展示一些代碼.... – HaukurHaf 2014-09-25 10:21:19
謝謝,現在的代碼是在我的問題 – GeekOnGadgets 2014-09-25 10:27:48