Front end table paging function
My idea
1. Request all data at one time, and then divide it into many parts to the front end for display
(advantages: one-time request is completed without further request. Disadvantages: users may not need to use all data segments, and if the amount of data is large, the request is very slow, which greatly affects the user experience)
2 ...
Added by DaiWelsh on Sat, 26 Feb 2022 15:12:44 +0200
2022 authorized login of the latest wechat applet (front and back end separation)
1, Foreword
First, let's talk about two major changes in wechat applet recently:
1. The interface for obtaining user information is from the original Wx Replace getUserInfo with Wx getUserProfile
For the new version of applet released after 24:00 on April 28, 2021, the developer calls Wx GetUserInfo will no longer pop up a pop-up window and ...
Added by ntsf on Sat, 26 Feb 2022 13:16:50 +0200
Problems encountered when grouping options in ng select
In the compilation of resident choice components, my original idea was to achieve the effect like above, showing the name, telephone number, ID number of the residents, and grouping them according to the plot and building, but there were some bug in the group.When I get residents again, I get all residents first and then pass filter to obtain t ...
Added by rcmehta_14 on Sat, 26 Feb 2022 12:05:12 +0200
Introduction to string, array, date and other objects in js and common string methods and array methods
object
Everything in JavaScript is an object: strings, numbers, arrays, dates, and so on. In JavaScript, an object is data that has properties and methods.
Property is a value associated with an object. Methods are actions that can be performed on objects Keywords () For example: cars are objects in real life.
Car properties: car.name=Fiat n ...
Added by Xiphoid8 on Sat, 26 Feb 2022 11:02:00 +0200
JavaScript regular expression
What is a regular expression? Regular expressions are objects that describe character patterns. Regular expressions are search patterns formed by a sequence of characters. Syntax of regular expression: / regular expression body / modifier (optional)
For example:
const exp = /abc/i
/abc/i is a regular expression, where abc is a regular expre ...
Added by Sterculius on Sat, 26 Feb 2022 10:26:49 +0200
JavaScript of Javaweb part I (overall part I)
Generally speaking, javaweb has learned one article. At that time, I just took it over. I didn't practice some things myself and forgot many of them. So I'll review it quickly here. I won't review the contents of HTML and CSS here. I'll review it from JavaScript.
1. JavaScript introduction
The birth of JavaScript language is mainly to complet ...
Added by trexx on Sat, 26 Feb 2022 10:01:51 +0200
2022 front end interview questions
catalogue
1 = = and = = = difference
2. What is the difference between $route and $route?
3 what is promise?
4 what is nested routing?
1 = = and = = = difference
= = =: it is called the equivalent when the values on both sides type When the types are the same, the values are directly compared. If the types are different, false is dir ...
Added by Tilemachos on Sat, 26 Feb 2022 09:22:17 +0200
Form tags of HTML common tags
Form tags of HTML common tags
preface1, Form field2, Form element
1.input form elements2.select drop-down form elements3.textarea form element
preface
In web pages, we need to interact with users and collect user data. At this time, we need to use form labels In HTML, a complete form is usually composed of three parts: form field, form ...
Added by Harsh on Sat, 26 Feb 2022 08:48:07 +0200
First day of javascript introduction
typora-copy-images-to: img
Today's content
JavaScript introduction Basic syntax of JavaScript JavaScript properties and text operations Dom operation of JavaScript
I JavaScript introduction
1. JavaScript overview
JavaScript is a client-side scripting language. It is an object-based and event driven client-side scripting language, wh ...
Added by ntbd on Sat, 26 Feb 2022 08:38:56 +0200
HTML simple learning record
Article catalogue
HTML simple learning record
brief introductionBasic structure of HTMLWeb page basic labelImage label
Link label Hyperlinks
Anchor linkFunctional links Inline and block elementslistformVideo and audio
videoaudio frequency Simple layout of pagesiframe inline frameworkForm syntax
Form element ...
Added by _SAi_ on Sat, 26 Feb 2022 08:27:34 +0200