JS single thread and how the webpage display in the web

  1. 知道了什么是线程。线程是进程中独立执行的单位。线程是操作系统进行运算调度的最小单位,是进程中的一个实体,由cpu调度的分派的基本单位。也是进程中的一个独立执行单元

  2. JS是单线程的,因为设计成这样的,其在某一时间只能执行一个任务,会阻塞其他任务进行。当新的任务加入的时候,会放在任务队列的最后面,当其前面的都执行完了,才会执行这个任务。突然,有一个任务耗时很长,而后面的任务又在等待执行,那这样就会造成浏览器“假死”,这一现象就相当于你平常在浏览网站的时候,突然怎么点击都没有反应一样。为了避免假死,过了好久,浏览器会给你个弹框,会提示要能不能结束该进程。

  3. 这个时候,你就会想,当我进行I\O(输入\输出)操作的时候,JS岂不是要等着我输入,才会进行下面的操作吗?
    其实不然,在设计者发现当用户要进行输入还未输入的时候,将这个任务先挂起来,当用户真的开始输入的时候,在来执行这个任务。这个会挂起任务,在等待输入,然后将挂起的任务开始执行的这个机制,被称为Event Loop!

  4. JS在运行的时候,其的引擎除了提供一个运行线程(因为JS是单线程,但是引擎并不是,引擎可以提供多线程,js脚本在线程上跑,别的线程在后台进行配合),还提供一个消息队列。这个相当于你在挂号一样的,你挂好号了,然后去看医生,医生那边知道你的消息,但是还没有叫你去看病一样。那你现在就在等待医生叫到你的号码,让你去看病。在程序中,就表现为你的号码,就是你挂的号相当于消息,而当医生叫到你,然后你在去医生那边看病这一行为为消息的响应,也就是程序中的回调函数。可以简单来说,你就是个回调函数,而触发你去医生那边看病,是不是因为医生叫到你的号码,你才去的,不然你只能排队。同时也要记得当医生叫到你的号码的时候,你没有去,医生是不是过一会就会叫下一个号。是不是说明你这个号码没有什么用处,因为这个号码的作用是让你去看病,但是你没有去看,说明这号码没有发挥自己的用处。这个对应在JS就是消息的遗失,一般消息跟回调函数是一起存在的,不然消息没有什么作用。

  5. setTimeout(),会在指定时间向消息队列插入一条消息,这个相当于我们在看医生的时候,是不是看见有时候自己被插队一样。当医生手上还在看病人的时候,是不是看完这个病人再看他,在JS中就是当消息队列中所有消息都处理完,在处理setTimeout的消息一样。当然医生没有病人再看,你说让他插队看,也是跟排队看一样。

  6. Event Loop机制:内部的一个循环,一轮一轮地处理消息队列中的消息,相当于执行消息的回调函数。
    update:虽然之前写过。但是发现自己并不是完全搞明白。所以又重写了一篇。查了一天的资料在写的。11.23/2017

Importent thing

  1. 我这两天浏览文章的时候,才发现。js是单线程的,但是浏览器并不是的。以前就知道页面是如何在网页中展示的过程。简单提一下
    1. Client send request (the client is meaning web client)
    1. The server received the request of client
    1. The server analyze the request 。this process is the server get request's parameters ,then use middleware to handle those parameters
    1. When the serve finish the handle process,it will send the result to client
    1. If the client get result,the web begin invoke process to analyze and show the result to users in a friendly way 。
    1. During showing the web page, we should know how webClient to handle the result
    1. If the server send the client a directory includes html、css or js files,the web will invoke the GUI render engine thread to analyze files。First,the GUI engine analyze the html files and render the DOM(document object model) tree。If web find the tag named like these"link,script,img...",it will invoke the asynchronous http request thread to request this resource。Second,when the web received css files ,the GUI engine analyzes these files to make the DOM tree into the render tree. Finally,the web will invoke js files if these existed。

ok ,I forget something。

When client sent request to server,there is a course.
The client send request use url,and the url will be analyzed by DNS serve provider。The DNS serve provider will transform url

    1. Users input url,but web can't understand the url ,so web will transform url to the IP .
    1. First the web find host file if it has existed.The host file records IP infomation.If not,web will send the request of DNS(domain name server) to local DNS server .If local DNS server also can't find the demain name is correspond to the IP .The local DNS server also sends request to root server to get infomation.If not,the root will send request to the com server 。Finally,the com server will return the request service address to the local DNS server and the local DNS server get the relationship between domain and the IP;
      reference 👈
      reference1 👈
      DNS work.jpg
    1. The web get IP address now.It can send a request to website to get information users want.Yes,there is also a course . The web will send a request with a random port to website web programmer to request the TCP connection.
    1. The connection request arrives at remote server by crossing physical machine and network card 。The request arrives at the TCP/IP agreement stack 。Finally, web programmer accept the request and build the connection of the TCP/IP 。
    1. Now,the connection is ok. And the client can send a request to the remote server to get information.

A picture is worth a thousand words

ShowPage.png

Now,the websocket Protocol is useful. You can see this article1 article2 👈

Other Reference

the threads of web

When web work,there are five threads to work .
The threads are the GUI render thread ;setTimeOut trigger thread ;js engine thread;async http request thread;event trigger thread;
and you should know the javascript engine thread is opposed to the GUI render thread
more infomation

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342