关于$location.search
,文档说,
不带任何参数调用时返回当前 url 的搜索部分(作为对象)。
在我的 URL 中,我的查询字符串有一个?test_user_bLzgB
没有值的参数。还$location.search()
返回一个对象。如何获取实际文本?
关于$location.search
,文档说,
不带任何参数调用时返回当前 url 的搜索部分(作为对象)。
在我的 URL 中,我的查询字符串有一个?test_user_bLzgB
没有值的参数。还$location.search()
返回一个对象。如何获取实际文本?
不确定自从接受的答案被接受后它是否发生了变化,但这是可能的。
$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
如果您只需要将查询字符串视为文本,则可以使用:$window.location.search
$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="/">
存在于您的 HTML 中
<head>
<base href="/">
...
</head>
参考:
Angular 不支持这种查询字符串。
URL 的查询部分应该是&
- 分隔的键值对序列,因此可以完美地解释为一个对象。
根本没有 API 来管理不代表键值对集的查询字符串。
在我的 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>
很晚的答案 :( 但是对于有需要的人来说,这也适用 Angular js 也适用 :) URLSearchParams让我们看看如何使用这个新 API 从位置获取值!
// 假设 "?post=1234&action=edit"
var urlParams = new URLSearchParams(window.location.search);
console.log(urlParams.has('post')); // true
console.log(urlParams.get('action')); // "edit"
console.log(urlParams.getAll('action')); // ["edit"]
console.log(urlParams.toString()); // "?post=1234&action=edit"
console.log(urlParams.append('active', '1')); // "?
post=1234&action=edit&active=1"
使用这个函数而不是URLSearchParams
urlParam = function (name) {
var results = new RegExp('[\?&]' + name + '=([^&#]*)')
.exec(window.location.search);
return (results !== null) ? results[1] || 0 : false;
}
console.log(urlParam('action')); //edit