Web front-end homework - pet house (html+css+javascript)

🌩️ Wonderful column recommendation👇🏻👇🏻👇🏻 💂 Author homepage: [Enter the homepage—🚀Get more source code] 🎓 web front-end final homework: [📚HTML5 webpage final assignment (1000 sets) ] 🧡 Interesting confessions for programmers: [💌HTML Tanabata Valentine's Day Confession Web Page Production (110 Sets) ] 2. 📚 web ...

Posted by glence on Fri, 07 Oct 2022 04:28:22 +0300

SpringBoot, uniapp projects integrate token verification

SpringBoot, uniapp projects integrate token verification Since the front-end uniapp of this small project uses tokens for verification, I also learned how to use related tokens when writing the back-end. What is a token? A simple understanding is that the token is a string generated on the server and passed to the client as the token carried ...

Posted by satyac46 on Wed, 05 Oct 2022 05:22:44 +0300

Summary of the vue stage (vue basics)

Table of contents 1. What is vue 2. What is mvc and mvvm 3. The difference between framework and library 4. Interpolation expressions 5. The vue instruction prevents the page from flickering 6. The difference between v-html and v-text of vue instructions 7.vue directive - property binding and shorthand 8.vue instruction - event bindin ...

Posted by nublet on Sun, 25 Sep 2022 21:22:35 +0300

jQuery password verification and in-depth understanding of JSONP [front-end jQuery framework]

jQuery Password Validation The jQuery Password Authentication Plugin extends the jQuery Authentication Plugin and provides two components: Function for evaluating password-related factors: For example, mix of upper and lower case letters, mix of characters (numbers, special characters), length, and similarity to username (optional). User-def ...

Posted by dr_overload on Wed, 21 Sep 2022 21:15:10 +0300

Handwritten a mini version of the React state management tool

Handwritten a mini version of the React state management toolCurrently in React, there are many and various state management tools, such as:React ReduxMobxHoxEach state management tool has different API s and usage methods, and has a certain learning cost, and these state management tools also have a certain degree of complexity, and they are n ...

Posted by jeff8j on Tue, 20 Sep 2022 21:35:44 +0300

Ajax study notes organization

1. Client and Server 1.1 Server In the process of surfing the Internet, the computer responsible for storing and providing resources to the outside world is called a server. 1.2 Client In the process of surfing the Internet, the computer responsible for acquiring and consuming resources is called the client. 2.URL address 2.1 The conc ...

Posted by farsighted on Fri, 16 Sep 2022 21:47:28 +0300

Web-based meal ordering system for epidemic isolation zones

1. Project introduction The purpose of this project is to use the trend of Internet development and related web application development technology to improve the vitality and vitality of the catering industry, while contributing their own ideas and technologies to the epidemic. As we all know, when the new crown epidemic spread by foam lea ...

Posted by witold on Wed, 14 Sep 2022 21:01:42 +0300

Es6 arrow functions

1. Ordinary functions 1. First, let's talk about the use of ordinary function s 1.1 When we want to define a function, there are two ways to define a function (function function name () {}) (var function name = function () {}). For example, the following code defines fn1, fn2 var a=10; function fn1(){ co ...

Posted by kevin1 on Tue, 13 Sep 2022 21:23:09 +0300

TS decorators, Mixins, modules and namespaces

Table of contents decorator Definition of a decorator class decorator Mixins Modules and Namespaces Modules in TS Namespaces in TS decorator The main role of a decorator is to extend some new behavior to an existing method or class, rather than modifying it directly. After ES2015 enters Class, when we need to share or extend some met ...

Posted by axiom82 on Tue, 13 Sep 2022 21:04:14 +0300

Advanced front-end two-sided interview questions

If a constructor bind s an object, will the instance created by this constructor inherit the properties of the object? Why? No inheritance, because according to the four rules of this binding, the priority of the new binding is higher than the bind display binding. When a Constructor call is made through new, a new object is created, which repl ...

Posted by Shaudh on Mon, 12 Sep 2022 21:19:06 +0300