zoukankan      html  css  js  c++  java
  • JavaScript从URL里面获取参数

    如何从URL中获取参数是一个很基本的问题。首先假定URL是合法的,code 如下,欢迎各位大大code review.

     1. 可以使用一个match和循环split

    function findQueriesFromUrl(url){
        var regex, matches, i, length, pair, result = {}, query;
        if(!url) return;
        regex = /\w+\=\w*/g;
        matches = url.match(regex);
        for(i = 0, length = matches.length;i<length;i++){
            pair = matches[i].split('=');
            result[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); 
        }    
        return result;
    }

    2. 可以使用exec获得所有的分组, 

    function findQueriesFromUrl(url){
        var regex, result = {}, match;
        if(!url) return;
        regex = /(\w+)\=(\w*)/g; //没有/g会死循环。
        while(match = regex.exec(url)){
    result[decodeURIComponent(match[
    1])] = decodeURIComponent(match[2]); } return result; }

    需要注意的是,exec只有针对同样的调用对象同一个字符串的引用作为参数的时候才能迭代返回所有的分组,否则可能会死循环, 例如如下的代码就会死循环:

    while(match = (/(\w+)\=(\w*)/g).exec(url)){ result[match[1]] = match[2]; }

     题外话,exec函数会循环返回所有match的对象,例如调用

    (function excute(url){
        var regex, result = {}, match, i = 0;
        regex = /(\w+)\=(\w*)/g;
        while(i < 10){
            i++;
            console.log(regex.exec(url));
        }    
        return result;
    })('a=b');

    会循环输出一个match的对象和null, 如下:

    ["a=b", "a", "b", index: 0, input: "a=b"]
    null
    ["a=b", "a", "b", index: 0, input: "a=b"]
    null
    ["a=b", "a", "b", index: 0, input: "a=b"]
    null 
    ["a=b", "a", "b", index: 0, input: "a=b"]
    null
    ["a=b", "a", "b", index: 0, input: "a=b"]
    null 

    如果去掉正则表达式里面的g,输出会变成:

    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"]
    ["a=b", "a", "b", index: 0, input: "a=b"] 

    这样就不能取到所有的匹配了。

  • 相关阅读:
    java做微信支付notify_url异步通知服务端的写法
    QT如何编译出带调试信息的qtwebkit库
    Vmware 占用宿主机硬盘空间只增不减
    vmware linux无法正常上网
    Linux中find常见用法示例
    计算机网络OSI参考模型与tcp/ip四层模型
    Core开发-后台任务利器Hangfire使用
    Azure构建PredictionIO和Spark的推荐引擎服务
    NET MVC+EF6+Bootstrap
    服务器
  • 原文地址:https://www.cnblogs.com/rixin/p/4049216.html
Copyright © 2011-2022 走看看