首页 > Web开发 > 详细

node.js 模块之url和querystring模块

时间:2014-09-03 23:57:37      阅读:592      评论:0      收藏:0      [点我收藏+]

关系如下:

                       url.parse(string).query
                                           |
           url.parse(string).pathname      |
                       |                   |
                       |                   |
                     ------ -------------------
http://localhost:8888/start?foo=bar&hello=world
                                ---       -----
                                 |          |
                                 |          |
              querystring(string)["foo"]    |
                                            |
                         querystring(string)["hello"]


pathname不包括query string,

http://localhost:8888/start
的pathname为/start.注意有斜线。
访问http://localhost:8888
的pathname为/.

node.js 模块之url和querystring模块

原文:http://www.cnblogs.com/youxin/p/3954740.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!