[summer training] detailed explanation of El autocomplete on July 6, 2021

Official document with input suggestions for element UI: https://element.eleme.cn/#/zh-CN/component/input It is recommended to read the official documents first. Here is an appropriate supplement to the official documents Reference El autocomplete 1. Reference where needed <el-autocomplete class="inline-input" v-model="in ...

Posted by bravo81 on Fri, 21 Jan 2022 06:46:18 +0100

Ab initio front end --es6 (deconstruction and assignment of array)

Deconstruction assignment of array Basic Usage ES6 allows you to extract values from arrays and objects and assign values to variables according to a certain pattern, which is called deconstructing. es5 declares multiple variables at once var a = 1, b = 2, c = 3, ...; es6 declares multiple variables at once let [a,b,c] = [1, ...

Posted by playa4real on Fri, 21 Jan 2022 05:59:35 +0100

HTML learning notes

Hey,guys. I'm poem23 This is my study note on "Introduction to the front end of dark horse programmer pink teacher, h5(html5)+css3 + Mobile front end video tutorial for zero foundation" at station b, Link attached https://www.bilibili.com/video/BV14J4114768?p=1 , I hope my notes can help you. HTML What is a web page? Web si ...

Posted by PureEvil on Fri, 21 Jan 2022 04:48:26 +0100

[Python crawler advanced learning] - JS reverse hundred examples - Baidu translation interface parameter reverse

  Reverse target Objective: Baidu translation interface parametersHome page: Online translation_ YoudaoInterface: https://fanyi.baidu.com/v2transapiReverse parameters: Form Data: sign: 706553.926920token: d838e2bd3d5a3bb67100a7b789463022 Reverse process Packet capture analysis We can see that the translation result comes out with ...

Posted by freenity on Fri, 21 Jan 2022 02:04:02 +0100

JS deep excavation: event mechanism Q & A - registered event listening, event response operation, bubbling and capture

catalog: 1,Event mechanism concept 2,Method of registering event listening 3,Event operation 4,Bubbling and trapping 1. Event mechanismProblem Description:1) How does the event mechanism work? How is it different from the event loop mechanism?Answer:Event mechanism is different from event loop. It is user interaction level and depends on event ...

Posted by 8ball on Thu, 20 Jan 2022 20:58:30 +0100

Nuxt.js server rendering from installation to deployment

Nuxt.js server rendering scheme Learn about nuxt Role of JSMaster nuxt Routing in JSMaster the differences among layouts, pages and componentsCan be in nuxt Using third-party ui libraries or plug-ins in JS projectsMaster nuxt How to get data asynchronously in JSMaster SEO optimization 1, What is SEO SEO is the abbreviation of English Search ...

Posted by jimmyt1988 on Thu, 20 Jan 2022 20:31:22 +0100

Leetcode algorithm solution series - minimum stack

This topic aims to share some interesting or valuable topics found in the process of brushing Leecode. [of course, the answer is based on js].Topic relatedOriginal title addressTitle Description:To define the data structure of the stack, please implement a min function that can get the smallest element of the stack in this type. In this stack, ...

Posted by ppera on Thu, 20 Jan 2022 19:26:24 +0100

Homework for the fourth and fifth days of learning JS

Assignment 1 The following functions are implemented as required and tested: Implement a join function, which can connect the parameters according to the specified characters. Function name: join. Parameters: s (symbol), SRC1 (character 1), src2 (character 2) Return value: string after connection function join(s,src1,src2){ ///Self re ...

Posted by JeremyTiki on Thu, 20 Jan 2022 14:36:13 +0100

Encapsulation of front-end design patterns

Encapsulation of front-end design patterns   this article refers to the JavaScript Design Pattern and development practice written by Zeng tan 1. Package data   in the object system of many languages, encapsulating data is implemented by syntax parsing. These languages may provide private, public, protected and other keywords to pr ...

Posted by ereptur on Thu, 20 Jan 2022 14:26:03 +0100

How to use dllplugin package to extract public dependencies and the problems encountered in the micro front end (Qiankun) project

preface For large projects, it is often necessary to extract the dependencies of common parts to avoid repeated loading of dependencies. When extracting public plug-ins, we can consider using externals [Webpack's externals. note]. However, the premise of externals is that all dependencies must have a cdn or find its corresponding JS file, such ...

Posted by Dark-Hawk on Thu, 20 Jan 2022 14:21:29 +0100