我試圖從一個活動轉移到另一個使用離子。 我沒有任何錯誤,但行動不起作用。重定向離子
我的狀態是:
的.config(函數($ stateProvider){$ stateProvider .STATE( '指數',{ templateUrl: '的index.html', 網址: '/' }) .STATE( '家',{ templateUrl: '模板/ welcome.html', URL: '/家' });} )
我的控制器:
.controller('HomeCtrl', function($scope, $state, $http, $location) {
$scope.login = function(user) {
$http.get("http://localhost/app_dev.php/json/login/"+user.username+"/"+user.password)
.then(function(response){
console.log(response.data.status);
if(response.data.status === 200)
{
alert("redirect to main page");
$location.path("/home");
}else if(response.data.status === 403){
alert("Login or password incorrect");
}else{
alert("User not found");
}
});
};
})
當我receve我的JSON,我沒有錯誤,但重定向不顯示
你使用的是UI路由器嗎? –