1. /* 默认参数 */
    2. function http(method="get"){
    3. console.log(method);
    4. }
    5. http();
    6. http("post")