JS advanced summary
JS advanced
1, js Foundation
1. Data type
Classification: Basic (value) types: num, string, boolean, null, undefined; Object (Reference) type: object, function, array; (function, array is a special object)
2. Judge the data type
typeof: the result returns the data type, but all obejct returns the object instanceof: judge the specific type ...
Posted by robinas on Wed, 22 Dec 2021 14:36:55 +0100
Principle and implementation of Vue router
1, Vue router needs to realize the following functions:
1. vue plug-in:
vue plug-in will call vue The use () method receives a parameter. If the passed parameter is a function, call the function directly; If it is an object, the install method of the object is called. And pass in the vue instance
2. Instance objects router and route
Whe ...
Posted by wolfrat on Wed, 22 Dec 2021 09:12:33 +0100
Puppeter docker Failed to launch chrome
Recently, a puppeter service was used in the project to take a screenshot. The front-end service should be packaged into the docker image
First, I use node as the initial image and print the front-end code into the image. The final image will report an error when running the screenshot, saying that it is missing: libx11 xcb so. 1. There should ...
Posted by mooshuligan on Wed, 22 Dec 2021 07:50:50 +0100
E-commerce log items
Project architecture design
Java project collection
Project system architecture
Based on the real business data architecture of an e-commerce website, the project realizes the data from collection to use through multi-directional closed-loop business such as front-end application, back-end program, data analysis and platform deployment. A se ...
Posted by lilleman on Wed, 22 Dec 2021 07:11:49 +0100
Front end SEO code specification
Front end SEO code specification
What is SEO?
Search engine optimization is a way to improve the natural ranking of websites in relevant search engines by using the search rules of search engines. SEO refers to the behavior of making reasonable planning from the perspective of website structure, content construction scheme, user interactive c ...
Posted by tmk4php on Wed, 22 Dec 2021 04:31:43 +0100
CSS - positioning exercise (Carousel)
CSS (x) - positioning exercise (rotation chart)
preface
Before reading this note, you should pay attention to a problem. CSS3 or JavaScript is still needed to complete the effect of image scrolling. What we have been doing now is static pages, and dynamic effects will be added later.
The content of this record is based on the previous notes, ...
Posted by willieklein on Wed, 22 Dec 2021 04:11:11 +0100
TypeScript ใฎ 7 starting from 0: function
introduce
Functions are the foundation of JavaScript applications. It helps you implement abstraction layers, simulation classes, information hiding and modules. It is also a first-class citizen in JavaScript.
In TypeScript, although classes, namespaces and modules are supported, functions are still the main place to define behavior.
Ty ...
Posted by gigantorTRON on Wed, 22 Dec 2021 03:13:38 +0100
Vue's learning path (component in Vue)
๐ Programmer Xiao Wang's blog: Programmer Xiao Wang's blog ๐ Welcome to praise ๐ Collection โญ Leaving a message. ๐ ๐ If you have an editor's error and contact the author, if you have a good article, welcome to share it with me, I will extract the essence and discard the dross. ๐
Learning route of java self-study: Learning route of ja ...
Posted by Stryks on Wed, 22 Dec 2021 02:34:03 +0100
A Linux command with sufficient front end
prefaceAfter translating the official documents of TypeScript, I used VuePress to build a blog and realized the automatic deployment of GitHub and Gitee Pages, but I finally decided to build my own website. In the process of building the website, linux commands are indispensable. Therefore, this article writes a basically sufficient Linux comma ...
Posted by huntrguy102 on Wed, 22 Dec 2021 02:18:42 +0100
CSS gradient style
CSS gradient style
CSS3 Gradients
CSS3 gradients allow you to show a smooth transition between two or more specified colors.
Previously, you had to use images to achieve these effects. However, by using CSS3 gradients, you can reduce the download time and broadband use. In addition, the elements of the gradient effect look better when zoomin ...
Posted by romano2717 on Tue, 21 Dec 2021 20:34:09 +0100