日常学习和积累
Read more
Sentry接入及上报
Read more
Python学习
Read more
Electron学习

Electron 学习

Read more
TS-axios学习

使用 TS 重构 axios

Read more
Flutter学习
Read more
使用Docker+Nginx+Jenkins部署Node应用
Read more
日常工具技巧

日常工具技巧

MarkDown 转 PDF

安装 pandoc
安装 wkhtmltopdf
pandoc AKC-售后v2-3-20190604需求讨论.md -f markdown -t html5 -s -o test1.pdf
参考文章 用 pandoc 把 markdown 转换为 html

Read more
Vue的知识点和技巧

Vue 的知识点和技巧总结

Read more
输入URL到页面渲染的过程

输入 URL 到页面渲染中间发生了什么?

WEB 应用的生命周期(简述)

  1. 用户 输入 URL 或者点击链接(DNS 查询
  2. 浏览器 生成请求并发送至服务器 (TCP 三次握手四次挥手)
  3. 服务器 执行某些动作或者获取某些资源;将响应发送至客户端
  4. 浏览器 处理 Html、CSS、和 JavaScript 并构建结果页面
  5. 浏览器 监控事件队列 处理事件
  6. 用户 用户与 web 应用进行交互 期间一直重复 5、6 阶段
  7. 用户 关闭 web 应用服务
  8. 生命周期结束
Read more