Vue.js - (simple review, knowledge sorting)

VUE Vue (pronunciation / vju ː /, similar to view) is a set of progressive JavaScript framework for building user interface. Unlike other large frameworks, Vue is designed for bottom-up, layer by layer applications. Vue's core library only focuses on visual layers, which facilitates integration with th ...

Posted by andy75180 on Thu, 05 Mar 2020 20:22:21 -0800

Quickly grasp the relationship between ES6 iterator Generator and async and its usage

1. Traverser iterator 1.1 for traversal First of all, how do you traverse an array when you first get out of js? var arr = [1, 2, 3, 4, 7, 8, 9] for (let i = 0;i < arr.length;i++) { console.log(arr[i]); } 1.2 forEach traversal It looks like a dumb bunch, so ES5 has studied a foreach method for you, but it can't break, change t ...

Posted by scottjcampbell on Thu, 05 Mar 2020 08:44:54 -0800

Brother, your order has arrived (front and back wechat apps subscribe to message push)

Applet message push type Subscription message Template message Unified services message Customer service news Because Template message It is offline. The example message here is Subscription message To implement the subscription message, we need to know the parameter values of several applets Applet appid ...

Posted by rscott7706 on Thu, 05 Mar 2020 03:21:28 -0800

Kotlin foundation - classes and interfaces

(1) Definition of class Definition of classes in Java: public class SimpleClass{ } Definition of classes in Kotlin: class SimpleClass{} Note: in Kotlin, if there is no modifier, it is public by default. If there is no content in the class, you can omit the braces, and write as follows: class S ...

Posted by chrisv on Thu, 05 Mar 2020 03:11:43 -0800

Getting started with vue -- the use of v instruction

Entry directory 1.`v-once` 2.`v-text` 3.`v-html` 4.`v-show ,v-if` 5.`v-else,v-else-if` 6.`v-for` 7.`v-on` 8.`v-bind` 9.`v-model` 10.`v-block` Citation of CND <! -- development environment version with helpful command line warnings -- > <script src="https://cdn.jsdelivr.net/npm/vue/dist/vu ...

Posted by goatboy on Wed, 04 Mar 2020 21:25:09 -0800

It's enough to read this one

Note: without special instructions, the versions of Flutter and Dart are as follows: Flutter version: 1.12.13+hotfix.5 Dart version: 2.7.0 DataTable DataTable control displays table data. DataTable needs to set rows and columns. The usage is as follows: DataTable( columns: [ DataColumn(label: Text('Full name')), DataColumn(label: ...

Posted by sig on Wed, 04 Mar 2020 05:09:44 -0800

Spring source code analysis -- instantiation of Bean

3, Bean instantiation public void refresh() throws BeansException, IllegalStateException { synchronized (this.startupShutdownMonitor) { // Prepare this context for refreshing. prepareRefresh(); // Tell the subclass to refresh the internal bean factory. ConfigurableListableBeanFac ...

Posted by StateGuy on Wed, 04 Mar 2020 03:31:30 -0800

Use of Android AlarmManager alarm clock

Introduction to AlarmManager The AlarmManager class provides an interface to the system alarm service. You can set up a wake-up function for your app at a certain time in the future. When the alarm clock rings, the system actually sends out a broadcast registered for the alarm clock, which will automati ...

Posted by miesemer on Tue, 03 Mar 2020 23:28:59 -0800

Summarize the practical skills of vue knowledge system

As one of the three front-end frameworks, vue is a necessary skill for front-end developers. So how to learn and master vue systematically? For this reason, I have made a simple summary of the knowledge system. Please forgive and correct the shortcomings. If you like, you can give me a little praise! ...

Posted by DeFacto on Tue, 03 Mar 2020 23:24:48 -0800

Effect of cs2d-3d implementation -- tips

2D deformation: 1) translation transform: translate(x,y); move the element from the current position to the coordinate position of the given x-axis and y-axis transform: translateX(x); move along the X axis transform: translateY(y); move in the direction of the Y axis Note: horizo ...

Posted by Collin on Tue, 03 Mar 2020 01:45:59 -0800