有没有办法在angularJS中使用base_url()
?
这是我的代码:
它工作正常。但我只是好奇我是否有办法在代码注释中使用base_url
,而不是输入整个固定网址。
$scope.login = function(){
console.log($scope.users);
var inputs = 'myData=' + JSON.stringify($scope.users);
$http({
method:'POST',
url:'lib/login_c.php',
data: inputs,
headers:{'Content-Type' : 'application/x-www-form-urlencoded; charset=UTF-8'}
}).success(function(res){
console.log(res);
if(res == 1){
$window.location.href = "http://localhost/angularjs/index.php";
//$windows.location.href=baseurl() + '/index.php';
}else{
$scope.message = true;
}
});
};
答案 0 :(得分:1)
您可以使用/
来使用根网址。在你的情况下你想要href到索引页面就像这样:
$window.location.href = "index.php"
您可能还会发现这有用:
"./index.php" //dot is for root