Wang Jianfeng vue notes

vue notes 1, Build an integrated environment for vue 1. CDN static resources are directly introduced into html files <script src="https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/vue/2.6.14/vue.js"></script> 2. Import the vue.js file you wrote into the project, put it in the project folder, and package it with webpack import ...

Posted by nike121 on Tue, 12 Oct 2021 10:36:47 -0700

[React introduction practice] combined with ant design, develop a table list with [complex operation] and the use of [Modal pop-up] from 0

There is no doubt that you are born worthy of love.   catalogue 1. See the page effect 2. Analyze interface documents (1) Freeze and unfreeze interface   (2) View details interface   (3) Assign role interface   (4) Create user interface   3. Reference UI to write front-end pages (1) Overall page layout (2) L ...

Posted by Creech on Mon, 11 Oct 2021 21:00:59 -0700

How much do you know about Symbol?

How much do you know about Symbol? Symbol is the seventh type of JS data type. I've heard of undefined, null, Boolean, String, Number and Object, but is symbol a little strange? The emergence of symbol gracefully solves some basic problems, such as the confusion of references when large-scale projects cooperate with people. 1. How to generate ...

Posted by Marijnn on Mon, 11 Oct 2021 20:06:53 -0700

One developer summed up these 15 elegant JavaScript tips

Author: Haseeb Anwar Translator: front end Xiaozhi Source: medium There are dreams and dry goods. Wechat search [Daqian world] pays attention to this bowl washing wisdom who is still washing dishes in the early morning. This article GitHub https://github.com/qq449245884/xiaozhi It has been included. There are complete test sites, materi ...

Posted by onepixel on Mon, 11 Oct 2021 17:37:59 -0700

Common jQuery API s and jQuery events

jQuery basic overview, please stamp: Overview and basic usage of jQuery 1, jQuery common API s 1. jQuery selector $('selector') (1) Basic selector: ID selector: $("#id");Select all:*Class:Labels: divUnion: div, spanIntersection: li.current (2) Level selector: Offspring: $("UL > Li");Descendants: $("ul li" ...

Posted by Carline on Mon, 11 Oct 2021 15:28:15 -0700

Common methods of js array and string

Common methods of string charAt() gets the character at the specified subscript let str = '12345' console.log(str.charAt(0));//1 charCodeAt gets the Unicode code of the subscript characterUnicode assigns a number to all characters to represent that character let str = '12345' console.log(str.charCodeAt(1));//The result is 44 substring ...

Posted by benphelps on Mon, 11 Oct 2021 14:04:38 -0700

Generating Web application code from JSON sample data

catalogue introduce How does it work? Create data model Rendering code BootGen SDK Framework plug-in Web application In this article, you will understand the internal working principle of BootGen, a code generator that can create ASP.NET 5 and Vue 3 applications based on JSON datasets. introduce { "users": [ { "userName ...

Posted by phpfre@k* on Mon, 11 Oct 2021 12:38:39 -0700

React -- three attributes of components (state, props, refs)

Welcome to learn and communicate!!! Updating continuously Three properties of components (instances) state attribute State: state. Stateful components are complex components and stateless components are simple components understand: state is the most important attribute of the component object, and the value is the object (which can ...

Posted by Sealr0x on Mon, 11 Oct 2021 11:57:33 -0700

Basic Javascript (operator and process control)

1. Operator (operator) "Operator" is a symbol used to realize the functions of assignment, comparison and arithmetic operation. Common operators are classified as follows 👇 Arithmetic operator Increment and decrement operators Comparison operator Logical operator Assignment Operators 1.1 arithmetic operators operatordescri ...

Posted by char skd1 on Mon, 11 Oct 2021 11:23:58 -0700

java basic course design -- online student course selection system (HTML+CSS+JavaScript+jsp+mysql) -- final homework

🍅 Author home page: Li Yangyong   🍅 Introduction: high quality creator in Java field 🏆, [Li Yangyong] author of public account ✌   Resume template, learning materials, interview question bank [pay attention to me and give it to you] 🍅 Get the source code at the end of the article 🍅   Near the end of the semester ...

Posted by Alka-Seltzer on Sun, 10 Oct 2021 16:24:40 -0700