Building Discuz forum based on LAMP architecture

catalogue 1. Introduction to lamp architecture 1.1 general 1.2 construction sequence 1.3 main functions of each component 1.4 advantages of source code compilation and installation 2. Architecture construction process 2.1 preparation before installation 2.2 installing apache 2.3 installing mysql 2.4 installing PHP 1. Introduction ...

Posted by timbach2 on Wed, 06 Oct 2021 12:48:02 -0700

Proxy catcher and reflection method

Proxy catcher and reflection method Source JavaScript advanced programming The agent can capture 13 different basic operations. These basic operations have their own reflection API methods, parameters, associated ECMAScript operations, and invariants. get() The get () catcher will be called in the operation of getting the property value. ...

Posted by chordsoflife on Wed, 06 Oct 2021 10:09:18 -0700

Vue quick start

Vue quick start (Part 2) (for emergency use) 8, Asynchronous communication using Axios (emphasis) 8.1 what is Axios Axios is an open source asynchronous communication framework that can be used in browser and Nodejs. Its main function is to realize Ajax asynchronous communication. Its functional features are as follows: Create XMLHttpRe ...

Posted by ricky spires on Wed, 06 Oct 2021 07:46:26 -0700

React starts from scratch

React starts from scratch 4.1 introduction to react components Using React is using components Component represents some functions in a page Combine multiple components to achieve complete page functions Reusable, independent and composable 4.2 two creation methods of react component 4.2.1 creating with functions Functi ...

Posted by sanchez77 on Tue, 05 Oct 2021 10:48:10 -0700

Shangsi Valley grain college learning notes 4 - front end knowledge summary, lecturer list, front end implementation

es6 and vue basic knowledge points es6 syntax new features blog link vue basics blog link axios blog link npm, webpack blog link vue-element-admin Vue element admin is a background management system integration scheme based on element UI. Function: https://panjiachen.github.io/vue-element-admin-site/zh/guide/# function GitHub address: http ...

Posted by Hafkas on Mon, 04 Oct 2021 17:36:26 -0700

Face age change of autojs

The dental tutorial is easy to understand Effect Display origin 2021/10/04, autojs is upgraded to 9.0.9 today, and its own nodejs can basically be used, so test it with Tencent Cloud's face transformation sdk Environmental Science Mobile phone: Mi 11 Pro Android version: 11 Autojs version: 9.0.9 thinking autojs is responsible for int ...

Posted by Hopps on Mon, 04 Oct 2021 10:52:59 -0700

7 pictures, realize a simple version of Vue router from zero, which is too easy to understand!

preface In the most easy to understand words, talk about the most difficult knowledge points. I believe everyone must have used Vue router in Vue project, that is, routing. Therefore, in this article, I will not explain the basic explanation of Vue router. I will not explain the source code of Vue router to you. I will take you to implement a ...

Posted by Hipster on Sun, 03 Oct 2021 17:16:45 -0700

Make a little progress every day --------- the front desk framework of Changgou mall will be built the next day

The use of front and back-end separate development involves Vue+ElementUI+Axios. As a professional white whoring party and a complete white, we must learn and practice while learning. First, let's have some learning materials: The most important and critical learning materials must be the official website: Vue official website ElemetnUI officia ...

Posted by starmikky on Sun, 03 Oct 2021 16:54:14 -0700

Vue quick start

1.Vue overview 1.1MVVM mode M: That is, Model, including data and some basic operations 5: That is, View, page rendering results VM: view model, two-way operation between model and view (without developer intervention) Before MVVM, developers obtain the required data Model from the back end, and then render the Model into the View through ...

Posted by raker7 on Sat, 02 Oct 2021 15:59:47 -0700

Six new features that ES6 must know

ES6 New features of ES6 let & const const is used to represent constants (it is not allowed to change after declaration. Once declared, it must be initialized, otherwise an error will be reported) //ES6 constant cannot be modified const b=2; b=3;//Uncaught TypeError: Assignment to constant variable. console.log(b); Variables decl ...

Posted by abch624 on Fri, 01 Oct 2021 10:46:28 -0700