myfirst
- SPA单页 Web 应用概述:SPA(single page web application)单页 Web 应用,Web 不再是一张张页面,而是一个整体的应用,一个由路由系统、数据系 统、页面(组件)系统等等,组成的应用程序,我们之前学习的Vue就是SPA中的佼佼者,SPA 应用广泛用于对SEO要求不高的场景中。
- SEO搜索引擎优化概述:SEO:搜索引擎优化(Search Engine Optimization), 通过各种技术(手段)来确保,我们的Web内容被搜索引擎最大化收录,最大化提高权重,最终带来更多流量。
SEO解决方案:提前将页面和数据进行整合
前端:采用SSR
后端:页面静态化(freemarker 、thymeleaf、velocity)
- SSR服务端渲染概述:SSR:网页是通过服务端渲染生成后输出给客户端。
在SSR中,前端分成2部分:前端客户端、前端服务端
前端服务端,用于发送ajax,获得数据
前端客户端,用于将ajax数据和页面进行渲染,渲染成html页面,并响应给调用程序(浏览器、爬虫)
如果爬虫获得htm ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
文章12345678910111213title: myfirstdate: 2022-07-19 11:08: ...