util.js 494 B

123456789101112131415161718192021
  1. /**
  2. * 解析url参数
  3. * @example ?id=12345&a=b
  4. * @return Object {id:12345,a:b}
  5. */
  6. export function urlParse() {
  7. let url = window.location.search;
  8. let obj = {};
  9. let reg = /[?&][^?&]+=[^?&]+/g;
  10. let arr = url.match(reg);
  11. // ['?id=12345', '&a=b']
  12. if (arr) {
  13. arr.forEach((item) => {
  14. let tempArr = item.substring(1).split('=');
  15. let key = decodeURIComponent(tempArr[0]);
  16. let val = decodeURIComponent(tempArr[1]);
  17. obj[key] = val;
  18. });
  19. }
  20. return obj;
  21. };