0
大家好和遺憾,英語(如果你發現了一些錯誤),Angularjs:保持HTTP主體重定向後
我有一個問題:我在頁面A和I調用返回一個Web服務JSON在體內後,我重定向到另一個頁面B. 我的問題:重定向後,身體保存?用詞,我可以獲取或訪問正文(如果正文包含JSON)?
例
Web服務:
app.service('LoginService', ['$http', function($http) {
this.retrieveUser = function(username, password) {
var url = app.baseURI + username+"/"+password;
return $http.get(url);
};
...
JS重定向
self.login = function(username, password){
LoginService.retrieveUser(username, password)
.success(function (data) {
if(data.usuario.rol == "G")
window.location.href="http://localhost:8080/Natureadventure/html/gerente/gestionarActividades.html";
}).error(function(data){
$scope.loginForm.password.$setValidity("password", false);
});
};
謝謝!