zzt96 / node-learn

node learning exercises
0 stars 0 forks source link

node学习散记 #1

Open zzt96 opened 6 years ago

zzt96 commented 6 years ago
zzt96 commented 6 years ago

http的query和body

URL(Uniform Resource Locator) 地址用于描述一个网络上的资源, 基本格式如下 schema://host[:port#]/path/.../[;url-params][?query-string][#anchor]   scheme 指定低层使用的协议(例如:http, https, ftp)   host HTTP服务器的IP地址或者域名   port# HTTP服务器的默认端口是80,这种情况下端口号可以省略。如果使用了别的端口,必须指明,例如 http://www.cnblogs.com:8080/   path 访问资源的路径   url-params   query-string 发送给http服务器的数据   anchor- 锚

URL 的一个例子: http://www.mywebsite.com/sj/test;id=8079?name=sviergn&x=true#stuff Schema: http host: www.mywebsite.com path: /sj/test URL params: id=8079 Query String: name=sviergn&x=true Anchor: stuff

zzt96 commented 6 years ago

utility

utility.md5 方法,得到 md5 之后的值

zzt96 commented 6 years ago

superagent

zzt96 commented 6 years ago

cheerio

跟jq一样,css选择器

zzt96 commented 6 years ago

contact 于express深入理解(解决回调金字塔)

zzt96 commented 6 years ago

URL常用方法

ps