Wechat app learning notes music player (next, previous, auto next)
Wechat applet learning notes (IX) music player (next, previous, automatic next)
In order to realize the function of automatic next song, next song and previous song, and realize the circular play of the list, it must be clear that the current play is the first song in the list. Therefore, set a data record in the program that the currently pla ...
Posted by monk.e.boy on Mon, 30 Mar 2020 15:54:19 +0200
Inheritance of class in ES6
Inheritance of class in ES6
Parent class (base class)
Subclass
extends keyword
//Parent class
class Human{
//Constructor of the parent class
constructor(name,age,sex,hobby){
this.name=name
this.age=age
this.sex=sex
this.hobby=hobby
}
desc(){
const {name,age,sex,hobby}=this
consol ...
Posted by luketheduck on Fri, 27 Mar 2020 16:00:53 +0100
Webpack front end automation deployment project to server (Vue)
For the lack of Jenkins and other automatic packaging platforms, the usual process of deploying front-end projects is: first deploy to the test environment ok, then publish to the production environment, then deploy to the test environment, connect to the server with xshell, then connect to the serve ...
Posted by steves on Mon, 16 Mar 2020 04:23:16 +0100
To quickly build a front-end and back-end separation project for VUE+SpringBoot, look at one (Windows)
VUE part
About old versions
The package name of the Vue CLI was changed from vue-cli to @vue/cli.If you have a global installation of an older version of vue-cli (1.x or 2.x), you need to uninstall it first through NPM uninstall vue-cli-g or yarn global remove vue-cli.
The Node version requires that ...
Posted by phpsir on Fri, 13 Mar 2020 02:48:08 +0100
(CHER you up) Vue router
vue:Router route
Cognitive routing
Simple understanding
1. Terms in network engineering
2. Routing (Wikipedia): the activity of transmitting information from the source address to the destination address through the Internet
Back-end routing
The back end processes the mapping relationship betwee ...
Posted by Thuy on Fri, 06 Mar 2020 12:19:14 +0100
Interpretation of the first summary from the front-end framework
First, record the structure of the project that people can't understand:
Here's the structure that we didn't understand, which is a little more detailed:
I. clear structure
As a small white, it still needs a lot of knowledge to build a structure like this. However, in this process, it is also necessar ...
Posted by DaCheata on Wed, 26 Feb 2020 13:10:47 +0100
Insights into applets
Insights into applets
Counter war
What is applet
Small program is an application that can be used without downloading and installation. It realizes the dream of "within reach" of the application. Users can scan or search the application to open it. It also embodies the concept of "go ...
Posted by mwd2005 on Sun, 23 Feb 2020 10:29:42 +0100
Basic skills of Vue [VII. Vue router routing knowledge]
1. The concept of routing
Concept of Routing:
Back end Routing: for a normal website, all hyperlinks are URL addresses, and all URL addresses correspond to the corresponding resources on the server
Front end Routing: for single page applications, the main way to switch between different pages is th ...
Posted by integravtec on Tue, 18 Feb 2020 11:18:05 +0100
MVVM Principle-1-Principle Analysis
MVVM - Introduction and Demo
What is MVVM implemented in Vue?
First, the first M refers to the Model, which is also the ** data model. In fact, it refers to the data, which is changed into the Vue. In fact, it refers to the data ** in the Vue component instance. But this data has been defined from the very beginning as responsive data.
T ...
Posted by wyrd33 on Sat, 15 Feb 2020 18:34:15 +0100
[vue.js] use of axios
Article directory
1, axios native JavaScript request
2, Use of axios in vue
axios Chinese document|axios Chinese net
http://www.axios-js.com/zh-cn/docs/
1, axios native JavaScript request
get method request random joke
post mode request registration interface
Request results to be printed o ...
Posted by thimble on Wed, 12 Feb 2020 16:20:56 +0100