springboot+vue hands-on project, a real online blog system
Article catalogue
Description of spring boot training projectBasic knowledgeInterview preparation1. Project construction
1.1 new maven project1.1.2 bug s encountered1.2 configuration1.3 startup 2. Home page - article list
2.1 interface description2.2 coding2.2.0 Spring - annotation based development
2.2.1 table structureentity layer ...
Posted by tommyboy123x on Wed, 09 Mar 2022 17:29:43 +0100
webpack - front end resource loading / packaging tool
preface
Webpack is a very powerful front-end resource loading / packaging tool. It can perform static analysis according to the dependencies of modules, and then generate static resources according to certain rules (the following contents are regulated in webpack 5) Official website
1, webpack installation
1. Initialize npm
npm init ...
Posted by silentg0d on Wed, 09 Mar 2022 12:58:57 +0100
[Typescript] type operation
summary
Everything in Javascript is a variable, and so is Typescript. A type can also be used as a "variable" to perform some operations. For example, the advanced type introduced earlier is an extended type based on the basic type and composite type.
Some operators in Typescript can perform further operations on types, including:
...
Posted by marcs910 on Wed, 09 Mar 2022 12:32:13 +0100
Are you really proficient in using HTML5? How many of these 10 cool H5 features do you know?
The blogger found a giant cow's artificial intelligence learning website a few days ago. It's easy to understand, funny and humorous. I can't help sharing it with you. Click to jump to the website.
HTML5 is nothing new. We have been using several of its features since the initial version (January 2008). I took a closer look at the list of HTM ...
Posted by suckablesausage on Wed, 09 Mar 2022 06:55:28 +0100
Master the basics of axios
During my recent internship in the company, I came to share my technology again. After reading what you shared before, I couldn't think of what to share for the moment. I was worried
I suddenly remembered that I was asked about axios during my first internship, so I came to study systematically to see if there was anything I could share.
1, W ...
Posted by iraja on Wed, 09 Mar 2022 06:35:37 +0100
This article takes you to understand vue's process of creating a background management system (Vue+Element)
I'm a ballad. It's easy to give up, but it must be cool to insist
1 Preface
Based on my own work experience, if you have any unreasonable points, please make complaints about it.
2 Definition
What does the background management system add, delete and modify a page? Is it a bit like that? There is no duplicate definition
3 first contact w ...
Posted by schwim on Wed, 09 Mar 2022 06:35:30 +0100
A few minutes before work, I thoroughly understood the prototype and prototype chain of JavaScript
preface
JavaScript prototype and prototype chain have always been the focus and difficulty of interview, which is not so easy to understand.
text
Understanding several key points of prototype makes it easier to understand the concept of prototype:
1. All reference types (arrays, objects, functions) can freely extend attributes (except null) ...
Posted by manitoon on Wed, 09 Mar 2022 06:29:17 +0100
Use three JS to achieve magical 3D text suspension effect
Statement: the pictures and model materials involved in this article are only used for personal learning, research and appreciation. Please do not modify, illegally spread, reprint, publish, commercialize or engage in other profitable activities.backgroundIn three JS journey course Examples In, a method is provided to use three JS built-in meth ...
Posted by burhankhan on Wed, 09 Mar 2022 02:22:41 +0100
Vue2-Vue3.0 learning notes (latest video of dark horse programmer in 2021)
Vue introduction
What is vue?
Build user interface
It is very convenient to fill data into html pages with vue frame
Framework is a ready-made solution. Programmers can only abide by the specifications of the framework and write their own business functions!To learn vue is to learn the usage specified in the vue framework!vue instructio ...
Posted by Trenchant on Wed, 09 Mar 2022 02:20:42 +0100
Properties and operations of JavaScript Objeact
Basic operation of object
create object
The function called with the new keyword is the constructor. Constructors are functions designed to create objects.
For example:
var obj = new Object();
Remember, when you use typeof to check an object, it will return object.
For more information about common objects, see the previous article " ...
Posted by Silver_Eclipse on Wed, 09 Mar 2022 00:56:23 +0100