当前位置:网站首页>Two popular architectures for web application system development

Two popular architectures for web application system development

2022-06-22 00:38:00 Two rasps!

List of articles


C/S

Client/Server( The client / The server )
The server only manages data centrally , Computing tasks are scattered on the client , The client and server communicate through network protocol , The client sends a data request to the server , The server sends the data to the client for calculation , Calculation completed , The calculation result can be returned to the server .
Another situation is , The client performs simple preprocessing first , Then submit the processed results to the server for further processing . This mode is also commonly referred to as the fat client mode .

give an example :QQ、Foxmail

B/S

Browser/Server( browser / The server )
The client uses a common browser instead of various application software , The server is Web The server .
Between the browser and the server through TCP/IP Communication protocol , Request from browser , from Web The server fetches data from the background for calculation , And return the result to the browser .
This model , We usually call it thin client mode .
give an example : TaoBao 、 Dangdang


原网站

版权声明
本文为[Two rasps!]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206212310045428.html