vue front-end and back-end separate back-end management system (rights management, login), front-end scaffolding. Docking backend is a backend interface based on SpringSecurity

Article Directory Foreword (very important)1. Summary of concepts and technologies (key points must be understood) 1. vue2. vue-admin-template template file parsing3. Asynchronous correlation, front-end and back-end interaction4. Navigation Guard5. Routing Resolution 2. Single sign-on implementation 1. Backend interface and response resu ...

Posted by empnorton on Sat, 05 Mar 2022 18:26:09 +0100

Call api interface

How do we usually call the interface? In Vue, we usually call the interface through the library of axios, but when developing in uniapp, we need to borrow the library of uniapp for development. Next, let's explore it together. I uni.request(OBJECT) Function: send network request Description of OBJECT parameters: 1.url Type: String Requi ...

Posted by phpisawesome on Sat, 05 Mar 2022 16:18:27 +0100

Based on three JS 3D resume production

3D resume Github Project Demo Three.js, Vue+Element UI, ES6 preface Recently made a 3D resume. Let's record the production process. Sketch constructionDownload modelMaking mapsWrite codeWrite it at the back Construction sketch My idea is to build a three-dimensional study, which includes two walls and a desk, similar to the follow ...

Posted by new_to_php2004 on Fri, 04 Mar 2022 22:11:08 +0100

word paste picture to ckeitor

After 1.4.2, the official did not make functional changes. There was no bug in word copy in 1.4.2, and other versions could not be transferred manually The background used in this article is Java. The front end is Jsp (the front end is the same. If the background language is not good, you have to do Base64 encoding and decoding by yourself) Bec ...

Posted by TheBentinel.com on Fri, 04 Mar 2022 19:44:19 +0100

Petite Vue source code analysis - start from the static view

Introduction to code base structureExamples various usage examplesScripts packaging and publishing scriptstests test casessrcImplementation of built-in instructions such as directives v-ifapp.ts createApp functionblock.ts block objectcontext.ts context objecteval.ts provides expression operation functions such as v-if="count === 1"sch ...

Posted by mithu_sree on Fri, 04 Mar 2022 17:44:24 +0100

vue page refresh, data loss, data reset, data cache, data cache, vuex cache

Page refresh data lost In vue, data, vuex store and other data are in memory. Once the page is refreshed, these data will be lost (or reset to the initial value), which will affect the user experience at some times. Cache, recovery If you want to make the data refresh not lost, you have to listen to the page refresh event, cache the data to ...

Posted by jarriola on Fri, 04 Mar 2022 13:03:15 +0100

Specific implementation of vue routing parameter jump

The business scenario is like this. I query a list and display it on the page. When I click a message, I can jump to its corresponding top. The list page is displayed as follows: When I select a message, he will jump to the corresponding single list detail page for me. The screenshot of the page is as follows: You can see that the jump pa ...

Posted by johnperkins21 on Fri, 04 Mar 2022 08:13:48 +0100

Principle and implementation of 414vue router

1. Course objectives Implement vue Simulate a minimum version of Vue Common questions of response principle in interview Learn from others' excellent experience and transform it into your own experience Whether the rule is a response to an instance of Vue Reassign the attribute to an object. Is it responsive Blood deficiency vue Prepare the ...

Posted by bird_man11 on Fri, 04 Mar 2022 05:46:38 +0100

Spring Cloud of springcloud+springcloud+vue+uniapp distributed micro service E-commerce mall creates a unified authentication service based on JWT

The authentication service must have user information, otherwise how to authenticate whether it is a legal user? Because it is an internal call authentication, it can be simpler. Database management is one way. User configuration or distributed information can be perfectly integrated. Table structure The case in this tutorial omits the step ...

Posted by vcv on Thu, 03 Mar 2022 21:22:10 +0100

Use of the latest code generator (3.5.1 +) of mybatis plus

1. Introduce dependency: <!--mybatisPlus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.3.4</version> </dependency> <!--mybatis-plus Code generator --> <dependency> <groupId>com.baomidou</g ...

Posted by Thunderfunk on Thu, 03 Mar 2022 09:19:01 +0100