1.0.1 • Published 9 years ago
angular-query-parser-module v1.0.1
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;
})
;1.0.1
9 years ago