Course9428
Course Introduction:VuePress consists of two parts: the first part is a minimalist static website generator (opens new window), which contains a theme system and plug-in API driven by Vue, and the other part is a default theme optimized for writing technical documents. The original intention was to support the documentation needs of Vue and its sub-projects.
Course12280
Course Introduction:Is it okay to create a Vue official website in 30 minutes? VUE is not SEO-friendly? Tonight, I will lead the students to get started quickly with VuePress! Participate in the lottery QQ group: 609135716
Course2857
Course Introduction:Course introduction: 1. Cross-domain processing, token management, route interception; 2. Real interface debugging, API layer encapsulation; 3. Secondary encapsulation of Echarts and paging components; 4. Vue packaging optimization and answers to common problems.
Course1795
Course Introduction:Apipost is an API R&D collaboration platform that integrates API design, API debugging, API documentation, and automated testing. It supports grpc, http, websocket, socketio, and socketjs type interface debugging, and supports privatized deployment. Before formally learning ApiPost, you must understand some related concepts, development models, and professional terminology. Apipost official website: https://www.apipost.cn
Course5521
Course Introduction:(Consult WeChat: phpcn01) The comprehensive practical course aims to consolidate the learning results of the first two stages, achieve flexible application of front-end and PHP core knowledge points, complete your own projects through practical training, and provide guidance on online implementation. Comprehensive practical key practical courses include: social e-commerce system backend development, product management, payment/order management, customer management, distribution/coupon system design, the entire WeChat/Alipay payment process, Alibaba Cloud/Pagoda operation and maintenance, and project online operation. .....
Nuxt.js SSG (Static Site Generator) Get API Data
2023-11-16 21:36:07 0 1 176
Ways to get image: from base64 or ArrayBuffer using Vue
2023-11-06 15:34:13 0 1 207
How to add cache control in generated static files (Nuxt 3)
2023-11-05 08:55:14 0 2 287
Convert .HEIC to .JPG using ImageMagick in PHP
2023-11-02 17:38:57 0 1 264
Beautifying URLs in PHP frameworks
2023-10-30 09:40:09 0 1 198
Course Introduction:PHP staticization is divided into: pure staticization and pseudo-staticization; pure staticization is further divided into: partial staticization and complete staticization; pure staticization: saves the dynamic page generated by PHP into a static html file, and the user accesses the Static pages, instead of regenerating the same web page every time the user visits, have the advantage of reducing server overhead.
2020-02-01 comment 03607
Course Introduction:There are two types of staticization in PHP, namely: 1. Pure staticization. Pure staticization is divided into partial staticization and complete staticization. Pure staticization is to save the dynamic page generated by PHP as a static html page; 2. Pseudo-static, pseudo-static or dynamic access, in essence, dynamically generated data to facilitate search engine inclusion.
2022-03-09 comment 01829
Course Introduction:This article mainly introduces the pure static and pseudo-static usage of PHP page staticization, and analyzes the PHP page staticization in the form of examples - the related principles, implementation methods and related operation precautions of pure static and pseudo-static. Friends in need can refer to it. Down
2020-07-14 comment 02988
Course Introduction:PHP staticization is to make the website-generated pages displayed in front of visitors in the form of static HTML; PHP staticization is divided into pure staticization and pseudo-staticization. The difference between the two lies in the different processing mechanisms for PHP to generate static pages. Pure staticization is to save the dynamic page generated by PHP into a static html file. The user accesses the static page instead of regenerating the same web page every time the user visits, which can reduce server overhead. Pseudo-static refers to converting the URL address of a dynamic page into a URL address similar to a static page to facilitate inclusion by search engines.
2023-01-04 comment 03529
Course Introduction:PHP静态化技术加快网站速度和性能,常见技术包括:文件静态化:将动态网页保存为静态文件,提高速度和降低服务器负载;输出缓存:将动态内容保存在内存中,重复访问无需重新执行PHP代码,速度快且自动更新;框架提供的静态化:集成度高,自动更新静态文件,但依赖特定框架。选择技术取决于网站需求,内容更新频率低、注重速度选文件静态化,频繁更新内容选输出缓存或框架静态化。
2024-08-02 comment515