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
Course26430
Course Introduction:The English name of HTTP status code is HTTP Status Code. When a user browses a web page, the user's browser will send a request to the server where the web page is located, and before the browser receives the request, the web page's server will return an HTTP status code information. header in response to the browser's request. The following common HTTP status codes: 200-Request successful, 301-The resource (webpage, etc.) is permanently transferred to another URL, 404-The requested resource (webpage, etc.) does not exist, 500-Internal server error.
Course14196
Course Introduction:This public welfare live broadcast uses Vue scaffolding to complete the single-page display of China's epidemic and global epidemic data~ The project structure is carried out using the current trend of completely separating the front and back ends. The way to display China's epidemic data is to make a China epidemic map, and the way to display global epidemic data is to make a column chart. The technical hot spots involved are as follows: 1. echarts map configuration, complex column chart configuration; 2. axios cross-domain request cache data interface; 3. tp redis caches third-party interface data and other contents;
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.
Nuxt.js SSG (Static Site Generator) Get API Data
2023-11-16 21:36:07 0 1 176
Vue 3 dynamically imports based on Props
2023-11-16 11:40:01 0 1 235
How to understand controlled elements in react
2023-11-16 14:51:10 0 1 106
Ways to get image: from base64 or ArrayBuffer using Vue
2023-11-06 15:34:13 0 1 207
Heroku/Nuxt: nuxt command not found (sh: 1: nuxt: not found)
2023-11-05 18:59:02 0 1 290
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: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:This article will take you through the static attributes and static methods in PHP, introduce the nature of static, and the difference between static variables and ordinary variables. I hope it will be helpful to you.
2021-07-09 comment 03046
Course Introduction:In PHP, member properties and member methods modified by the static keyword are called static properties and static methods. The syntax for accessing static properties and static methods is "class name::$static property" and "class name::static method ( )".
2022-01-07 comment 02732
Course Introduction:How to call non-static methods from static methods in PHP: First, you need to instantiate the object; then call the non-static methods in the object. How to call a static method from a non-static method: You can use the self keyword or the form [class name::method name] to call it.
2020-11-03 comment 02677