angular-query-parser-module
v1.0.1
Published
angular module to parse url query string like string.
Readme
angularQueryParserModule
=========================================================== Parse the url query string like string to object
Contribution Notice:
===========================================================
Run gulp before making git commit. So the dist folder will be updated.
Install
bower install angular-query-parser --saveUsage
angular.module('yourModule', ['angularQueryParserModule'])
.controller('yourCtrl', ['$scope', 'queryParser', function($scope, queryParser) {
var result = queryParser.parse('?a=b&c=d');
result.a;
result.c;
})
;