摘要:
阅读全文
摘要:
server.js const http = require("http");const url = require("url");const globalConf = require("./config.js")const fs = require("fs");http.createServer( 阅读全文
摘要:
五层网络协议: 应用层:浏览器(HTTP FTP DNS SMTP telnet)(邓哥) 传输层:TCP(告诉我送到了,我再去睡觉) UDP(你去送吧,我去睡了) 网络层:IP协议(地址)ICMP RIP BGP 数据链路层:如何传输数据PPP SLIP 物理层:ISO的物理层规范(决定传输的速度 阅读全文
摘要:
1.require(“”);导入模块 require(“http”)导入http模块 模块对象需要导出,不然只能执行模块 module.exports和exports有什么区别 最开始同一个对象,如果改变指向,只会导出module.exports对象,所以最好永远只是用module.exports 阅读全文
摘要:
1.关机命令 正确的关机流程:sync>shutdown>reboot>halt sync:将数据的内存同步的硬盘中 shutdown:关机命令 shutdown –h now:立马关机 shutdown -h 10: 10分钟后关闭机器,并且会显示在用户的显示器上。 shutdown -h 20: 阅读全文
摘要:
vue入门学习1_事件及修饰符 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> 阅读全文