-
> url.parse("http://www.imooc.com/video/6710") Url { protocol: 'http:', slashes: true, auth: null, host: 'www.imooc.com', port: null, hostname: 'www.imooc.com', hash: null, search: null, query: null, pathname: '/video/6710', path: '/video/6710', href: 'http://www.imooc.com/video/6710' }查看全部
-
协议 客户端发起请求,创建端口,tcp连接 http服务器监听 http返回状态200以及数据 步骤:域名解析-- 浏览器DNS缓存(1分钟), 系统DNS缓存 HOST文件 浏览器发起DNS的一个系统调用{宽带运营商服务器根缓存 从com到域名,缓存区及操作系统内核缓存,操作系统内核结果返回浏览器, 浏览器获取域名IP地址,三次握手 TCP/IP连接建立,发送请求 服务器接收请求,处理数据返回浏览器 浏览器拿到完整HTML页面代码,静态资源同样请求 浏览器渲染查看全部
-
f you want the root of your module's export to be a function (such as a constructor) or if you want to export a complete object in one assignment instead of building it one property at a time, assign it to module.exports instead of exports. 如果希望模块导出的根是一个函数(例如构造函数),或者如果要在一个分配中导出完整对象,而不是一次创建一个属性,请将其分配给module.exports而不是exports 。 https://nodejs.org/dist/latest-v6.x/docs/api/modules.html查看全部
-
https://xgqfrms.xyz:8080/DataStructure/info?from=xgqfrms&page=index.html#page2查看全部
-
URL URL Strings and URL Objects urlObject.href urlObject.protocol urlObject.slashes urlObject.host urlObject.auth urlObject.hostname urlObject.port urlObject.pathname urlObject.search urlObject.path urlObject.query urlObject.hash url.format(urlObject) url.parse(urlString[, parseQueryString[, slashesDenoteHost]]) url.resolve(from, to) Escaped Characters https://nodejs.org/dist/latest-v6.x/docs/api/url.html查看全部
-
URI 统一资源-标识符 URL 统一资源-定位符(是URI的子集)查看全部
-
io.js io.js has merged with the Node.js project again. There won't be any further io.js releases. All of the features in io.js are available in Node.js v4 and above.查看全部
-
.exit 退出node环境查看全部
-
process查看全部
-
http爬虫查看全部
-
对象数组: [{"key": "value"}, {"key": "value"}, {"key": "value"}]查看全部
-
导出模块 exports.add = add 导出模块 module.exports.add = add 一样???查看全部
-
模块的流程: 创建模块 script.js 导出模块 exports.add = function(){} 加载模块 require('./script.js') 使用模块 xxx.add()查看全部
-
核心模块: https fs path... 本地模块 require('./my_script.js') 通过npm安装的第三方模块 require('bluebird')查看全部
-
path ubuntu bash on windows10 x64查看全部
举报
0/150
提交
取消