关于$ location.search,文档说,
不带任何参数调用时返回当前URL的搜索部分(作为对象)。
在我的网址中,我的查询字符串包含一个不带值的参数'?test_user_bLzgB'。同样,'$ location.search()'返回一个对象。我如何获得实际的文字?
关于$ location.search,文档说,
不带任何参数调用时返回当前URL的搜索部分(作为对象)。
在我的网址中,我的查询字符串包含一个不带值的参数'?test_user_bLzgB'。同样,'$ location.search()'返回一个对象。我如何获得实际的文字?
Answers:
自从接受了接受的答案以来,不确定它是否已更改,但是有可能。
$location.search()
将返回键值对的对象,该对象与查询字符串相同。没有值的键只是作为true存储在对象中。在这种情况下,对象将是:
{"test_user_bLzgB": true}
您可以直接使用 $location.search().test_user_bLzgB
示例(带有更大的查询字符串):http : //fiddle.jshell.net/TheSharpieOne/yHv2p/4/show/?test_user_bLzgB&somethingElse&also&something=Somethingelse
注意:由于哈希值(它将转到http://fiddle.jshell.net/#/url,这将创建一个新的小提琴),因此该小提琴在不支持js历史记录的浏览器中将不起作用(将不起作用)在IE <10中)
编辑:
正如@Naresh和@DavidTchepak的评论中指出的,$locationProvider
还需要正确配置:https : //code.angularjs.org/1.2.23/docs/guide/$location#-location-service-configuration
$locationProvider
还需要正确配置:code.angularjs.org/1.2.23/docs/guide/…(这让我绊倒了。希望链接可以节省其他时间。)
$location.search()
返回一个对象,该对象由作为变量的键和作为其值的值组成。因此:如果您这样编写查询字符串:
?user=test_user_bLzgB
您可以像这样轻松获得文本:
$location.search().user
如果您不希望使用像?foo = bar这样的键值,建议使用#test_user_bLzgB哈希值,
并打电话
$location.hash()
将返回“ test_user_bLzgB”,这是您希望检索的数据。
附加信息:
如果您使用查询字符串方法并且通过$ location.search()得到一个空对象,则可能是因为Angular使用的是hashbang策略而不是html5。模组
yourModule.config(['$locationProvider', function($locationProvider){
$locationProvider.html5Mode(true);
}]);
首先,使URL格式正确以获取查询字符串,请使用对我有用的#?q = string
http://localhost/codeschool/index.php#?foo=abcd
将$ location服务注入控制器
app.controller('MyController', [ '$location', function($location) {
var searchObject = $location.search();
// $location.search(); reutrn object
// searchObject = { foo = 'abcd' };
alert( searchObject.foo );
} ]);
所以输出应该是abcd
你也可以用这个
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
var queryValue = getParameterByName('test_user_bLzgB');
如果您$location.search()
不工作,请确保您具有以下条件:
1)html5Mode(true)
在应用程序的模块配置中配置
appModule.config(['$locationProvider', function($locationProvider) {
$locationProvider.html5Mode(true);
}]);
2)<base href="https://stackoverflow.com/">
存在于您的HTML中
<head>
<base href="/">
...
</head>
参考文献:
在我的NodeJS示例中,我有一个要遍历并获取值的URL“ localhost:8080 / Lists / list1.html?x1 = y”。
为了使用$ location.search()获得x1 = y,我做了几件事
我的list1.js有
var app = angular.module('NGApp', ['ngRoute']); //dependencies : ngRoute
app.config(function ($locationProvider) { //config your locationProvider
$locationProvider.html5Mode(true).hashPrefix('');
});
app.controller('NGCtrl', function ($scope, datasvc, $location) {// inject your location service
//var val = window.location.href.toString().split('=')[1];
var val = $location.search().x1; alert(val);
$scope.xout = function () {
datasvc.out(val)
.then(function (data) {
$scope.x1 = val;
$scope.allMyStuffs = data.all;
});
};
$scope.xout();
});
我的list1.html有
<head>
<base href=".">
</head>
<body ng-controller="NGCtrl">
<div>A<input ng-model="x1"/><br/><textarea ng-model="allMyStuffs"/></div>
<script src="../js/jquery-2.1.4.min.js"></script>
<script src="../js/jquery-ui.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular-route.js"></script>
<script src="../js/bootstrap.min.js"></script>
<script src="../js/ui-bootstrap-tpls-0.14.3.min.js"></script>
<script src="list1.js"></script>
</body>
我的解决方法更简单,创建一个工厂,并将其实现为一个变量。例如
angular.module('myApp', [])
// This a searchCustom factory. Copy the factory and implement in the controller
.factory("searchCustom", function($http,$log){
return {
valuesParams : function(params){
paramsResult = [];
params = params.replace('(', '').replace(')','').split("&");
for(x in params){
paramsKeyTmp = params[x].split("=");
// Si el parametro esta disponible anexamos al vector paramResult
if (paramsKeyTmp[1] !== '' && paramsKeyTmp[1] !== ' ' &&
paramsKeyTmp[1] !== null){
paramsResult.push(params[x]);
}
}
return paramsResult;
}
}
})
.controller("SearchController", function($scope, $http,$routeParams,$log,searchCustom){
$ctrl = this;
var valueParams = searchCustom.valuesParams($routeParams.value);
valueParams = valueParams.join('&');
$http({
method : "GET",
url: webservice+"q?"+valueParams
}).then( function successCallback(response){
data = response.data;
$scope.cantEncontrados = data.length;
$scope.dataSearch = data;
} , function errorCallback(response){
console.log(response.statusText);
})
})
<html>
<head>
</head>
<body ng-app="myApp">
<div ng-controller="SearchController">
<form action="#" >
<input ng-model="param1"
placeholder="param1" />
<input ng-model="param2"
placeholder="param2"/>
<!-- Implement in the html code
(param1={{param1}}¶m2={{param2}}) -> this is a one variable, the factory searchCustom split and restructure in the array params
-->
<a href="#seach/(param1={{param1}}¶m2={{param2}})">
<buttom ng-click="searchData()" >Busqueda</buttom>
</a>
</form>
</div>
</body>
$location.search()
但是我希望检查您在调用它时得到的“对象” ...