html anchors and other basic common tags
<!DOCTYPE html>
<html><!-- definition html file -->
<head>
<meta charset="utf-8" />
<hr />level
<title>new</title>
<a href="http://www.baidu.com "> hyperlink</a>
<h1 align="center">Title 1</h1><!-- level align Ali ...
Posted by aaaaCHoooo on Sat, 27 Jun 2020 04:41:46 +0200
This time, I will tell you the javascript closure clearly
catalog
Introduce (closure and block scope)
Understanding closures:
Common closures:
The role of closures:
The lifecycle of a closure:
Use the actual example of closure (return the interval element of price)
Jitter and acceleration of mobile animation (closure application, animation demonstrat ...
Posted by codygoodman on Fri, 26 Jun 2020 09:43:37 +0200
Beego Learning Notes 15: Layout Page
Page Layout
1> An html page is made up of: head part, body part, internal css, internal js, external css, external js.Therefore, a layout file also needs to be split against these.
2> Create a new oneLayout.goController.Write an instance that references the layout file.The code is as follows:
package controllers
import (
"github.co ...
Posted by ReD_BeReT on Wed, 24 Jun 2020 18:17:42 +0200
Analysis of new features of Vue 3
It is known that the current stable version of Vue is 2.6.x, and the subsequent version is 2.7.x (part of vue3 content is added). After 18 months of maintenance, except for the security vulnerability update, the rest will not continue to update. Explain that we will embrace the era of vue3.0 in an all-round way
Information about the compatibili ...
Posted by white99 on Wed, 24 Jun 2020 05:25:20 +0200
Vue 3.0 - Proxy
This article starts with the official account: qianduansuohua. Welcome.
preface
On April 17, Yuda announced the official release of Vue 3.0 beta on Weibo.
In the article "Vue3 design process" released by Youda, it is mentioned that one of the considerations for refactoring Vue is the support level of JavaScript's new language feature ...
Posted by tolutlou on Wed, 24 Jun 2020 05:18:02 +0200
Let's write a small program timer management library
Author: attapulgite - Anthology
background
Attaman is a small program developer, he wants to implement the countdown of seconds in small programs. Without thinking about it, he wrote the following code:
Page({
init: function () {
clearInterval(this.timer)
this.timer = setInterval(() => {
// Countdown calculation logic
c ...
Posted by edspace on Tue, 23 Jun 2020 09:17:17 +0200
Common use and configuration of Nginx
summary
What is Nginx?
Nginx (engine x) is a lightweight Web server, reverse proxy server and email (IMAP/POP3) proxy server.
What is reverse proxy?
Reverse Proxy means that the proxy server accepts the connection request on the internet, then forwards the request to the server on the internal netwo ...
Posted by neoboffins on Tue, 23 Jun 2020 06:04:08 +0200
Filter mode and responsibility chain mode
The filter pattern is also called the standard pattern, which mainly uses different standards to filter a group of objects. The process of filtering is a process of layer by layer filtering, so the filter pattern is a kind of structural design pattern.
In the actual development, the use of filter patter ...
Posted by artist-ink on Tue, 23 Jun 2020 05:41:30 +0200
HTML Final Design - Code Text
Pre-declaration
I'm not really good. This web page design is also a regular web page which uses what I've learned to do. It can be used as a reference for freshmen in the future. The effect of commercial websites is certainly unparalleled. Expectations are too high to close. Please criticize me severe ...
Posted by julia k on Mon, 22 Jun 2020 18:06:09 +0200
Great Webpack Construction Process Learning Guide
Recent original articles review:
GreatTsconfig.jsonGuide
Great Webpack HMR Learning Guide with Source Analysis
Outside Story of Blob You Don't Know
Outside of WeakMap You Don't Know
Webpack is a hot front-end packaging tool and is essentially a static module bundler for modern JavaScript applications.When a Webpack processes an application, ...
Posted by sambkk on Mon, 22 Jun 2020 02:25:01 +0200