Chapter 9 Panel Components

Learning Points: 1. Loading method 2. Attribute List 3. Event List 4. List of methods This lesson focuses on how to use the Panel component in EasyUI, which is independent of other components. 1. Loading Method //class Loading Method <div class="easyui-panel" data-options="closable:true"> <p>Content Area</p&g ...

Posted by justinjkiss on Tue, 04 Jan 2022 09:11:26 +0100

Vue2 source code learning notes-1

reference resources:Vue technology decryptionInterviewer: Vue instance mounting processThe difference between runtime compiler and runtime only in vueExplanation of different buildsIf there are any errors, please point them out~For more study notes, please stamp: https://github.com/6fa/WebKno...Contents of this document:1. Source code core dire ...

Posted by kevinjo on Tue, 04 Jan 2022 06:20:21 +0100

The use of js map library and the mutual transformation between several coordinates

@ 1: The use of js map library and the mutual transformation between several coordinates Introduction: now most of the maps on the market are: Tencent, Gaode, Tencent and these three categories. Gaode Baidu usually uses a lot. Tencent also uses location because of small programs or chatting. So it's used a lot. But: there will be many differen ...

Posted by MBDesktop on Tue, 04 Jan 2022 02:19:10 +0100

D7.VUE basic learning 20211231

V conditional rendering 5.1 v-if The v-if instruction is used to conditionally render a piece of content. This content will only be rendered when the expression of the instruction returns the truth value. <h1 v-if="awesome">Vue is awesome!</h1> You can also add an else block with v-else: <h1 v-if="awesome">Vue is awesom ...

Posted by zero-one on Mon, 03 Jan 2022 23:22:13 +0100

web technology -- Introduction to AJAX

AJAX Javaweb - emmm... I don't know how many days it is. happy has been nearly four months Ajax asynchronous refresh technology First of all, you should understand the asynchronous refresh technology of AJAX. Local refresh is widely used. The native AJAX steps are also fixed. You can create, register, initialize open, and send the ...

Posted by Zetusko on Mon, 03 Jan 2022 23:18:17 +0100

Xiaomi official website project production -- under javascript knowledge sharing

catalogue preface 1, Observe page content 2, Switching interface 3, Login form interface 1. Selected effect 2. Error prompt 3. Unchecked effect 4. Password box 4, Registration interface 5, Link jump summary preface Before, I shared the production of javascript content on the homepage of Xiaomi's official website. I don't kno ...

Posted by dv90 on Mon, 03 Jan 2022 22:49:39 +0100

react route guard (route interception)

Unlike Vue, react implements route interception by setting meta characters in the route. When using Vue, the framework provides the routing guard function to perform some verification before entering a certain road. If the verification fails, jump to 404 or login page, such as the beforeEnter function in Vue: ... router.beforeEach(async(to, fr ...

Posted by abhic on Mon, 03 Jan 2022 22:44:11 +0100

Basic configuration of axios, request interceptor and response interceptor

1: Basic introduction In actual projects, axios needs to be encapsulated once to uniformly configure the basic configuration of axios, request interceptor, response interceptor, etc; 2: Basic configuration We can use axios Create ([config]) to create an instance with axios general configuration. The following are common configuration items ...

Posted by nariman on Mon, 03 Jan 2022 22:14:17 +0100

Note: implement a mini react

preparationOf template files to be used Warehouse address1. JSXLet's look at the jsx syntax first. What did you do babel.jsYou can see that after babel translation, these jsx syntax finally calls react CreateElement, which requires three parameters: type, props and children. Its return value is the virtual DOM object. In other words, we can use ...

Posted by nariman on Mon, 03 Jan 2022 21:18:40 +0100

vue from introduction to mastery [vue data view]

vue Vue is a "progressive framework": Vue Min.js only contains the core content of Vue [such as options api, data processing, template view parsing and other operations]; In the real project, we will import according to the demand vuex implements public state management Vue router realizes SPA (single page application) single p ...

Posted by DarkEden on Mon, 03 Jan 2022 19:58:16 +0100