当前位置:   article > 正文

node.js中的url.parse方法使用说明_nodejs 参数用&连接

nodejs 参数用&连接

方法说明:

讲一个URL字符串转换成对象并返回。

语法:

url.parse(urlStr, [parseQueryString], [slashesDenoteHost]);

接收参数:

urlStr                                       url字符串

parseQueryString                   为true时将使用查询模块分析查询字符串,默认为false

slashesDenoteHost               

默认为false,//foo/bar 形式的字符串将被解释成 { pathname: ‘//foo/bar' }

如果设置成true,//foo/bar 形式的字符串将被解释成  { host: ‘foo', pathname: ‘/bar' }

Eg:

  1. var url = require('url');
  2. var a = url.parse('http://localhost:8080/one?a=index&t=article');
  3. console.log(a);
  4. //输出结果:
  5. {
  6. protocol : 'http' ,
  7. auth : null ,
  8. host : 'localhost:8080' ,
  9. port : '8080' ,
  10. hostname : 'localhost' ,
  11. hash : null ,
  12. search : '?a=index&t=article',
  13. query : 'a=index&t=article',
  14. pathname : '/one',
  15. path : '/one?a=index&t=article',
  16. href : 'http://localhost:8080/one?a=index&t=article'
  17. }



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/576047
推荐阅读
相关标签
  

闽ICP备14008679号