Spring Road (22) - spring MVC + bootstrap develop blog system instance (introduce bootstrap and browse blog page)

background What's the background? It's a function and a function directly. Ha ha, brothers are stable. Function realization of browsing blog 1. First, modify the blogView method of the BlogController, and bring the blog list information when entering the browsing blog page @Autowired//Auto assemble ...

Posted by lynwell07 on Mon, 27 Jan 2020 01:16:27 -0800

Electron 7.1.10 installation failed

I have a problem recently. That is, Mac OS can't read and write when it is plugged into NTFS format mobile hard disk, and then it finds that some file system prompts are occupied by Mac OS and can't be opened. Every time I need to execute the command to mount it manually... Then I can't accept the lazy cancer, so I developed a small tool with ...

Posted by RandomEngy on Sun, 26 Jan 2020 08:59:06 -0800

Vue entry notes

Vue learning notes 1. MVVM mode and the first Vue program Learning course of java according to ecstasy What is MVC? MVC mode represents model view controller mode. This pattern is used for hierarchical development of applications. Model - a model represents an object or JAVA POJO that accesses d ...

Posted by zipdisk on Thu, 23 Jan 2020 05:36:46 -0800

New Vue project based on @vue/cli 3.0

Write before: The package name of the Vue command line tool has changed from vue-cli to @vue/cli, @vue/cli is version 3.x of vue, and the maximum version of vue-cli is currently only @2.9.6.If you have previously installed vue-cli globally on your computer, you need to uninstall it first by executing NPM uninstall vue-cli ...

Posted by ravnen on Sun, 19 Jan 2020 08:21:54 -0800

Webpack practice: how to use style CSS preprocessing gracefully

In the last article, I mainly shared< How Webpack separates style files >css preprocessor is a program that allows you to generate css through preprocessor's own unique syntax. css preprocessing refers to that we often use some style precompiled languages in development, and then convert these pr ...

Posted by snowrhythm on Sat, 18 Jan 2020 20:05:38 -0800

Create react app quickly builds react projects, antd loads incoming and local request data on demand

# Global installation npm install -g create-react-app # Build a my-app Item npx create-react-app my-app cd my-app # Tap on the key points of the blackboard, if you want to use less,Or it depends on the use webpack Configuration files, exposing webpack Profiles, using create-react-app The created projec ...

Posted by Misticx on Thu, 16 Jan 2020 02:51:06 -0800

[Environment] go mod--a love-hate package management tool

Why do we need package management Python has pip, Nodejs has npm.Is there a package management tool in other languages, so go needs it?Of course not, let's look at the following code: import ( "github.com/TomatoMr/something" ) This is how go references packages, which is obviously a third-party package, so how exactly is it found on our m ...

Posted by bdbush on Tue, 14 Jan 2020 09:18:17 -0800

Getting Started Installation and Basic Use of Sass

Preface Sass is a CSS preprocessor that helps us reduce CSS duplicate code and save development time.CSS3 has been extended to include rules, variables, blending, selectors, inheritance, built-in functions, and more.Generate well-formatted CSS code for easy organization and maintenance with a Sass file suffix of.Scss. 1. Sass Installation NPM I ...

Posted by ppgpilot on Mon, 06 Jan 2020 11:48:03 -0800

Componentized Development of Vue Family Buckets

Author| Jeskson Excavation| https://juejin.im/user/5a16e1f3f265da43128096cb To learn component development, first master the idea of component development, the way components are registered, the data interaction between components, the use of component slots, the use of vue mode tools, and the way components implement business logic functions ...

Posted by cristalmolix on Mon, 06 Jan 2020 11:24:55 -0800

Vue element Multilingual Settings

In the project, you need to customize the Chinese / English switch. Based on vue.js, combined with vue-i18n and ElementUI, the following are the usage methods. ElementUI internationalization link: http://element-cn.eleme.io/#/... vue-i18n: https://github.com/kazupon/vu... Installation: npm install vue-i18n vue.js+vue-i18n int ...

Posted by Xo_ on Sun, 05 Jan 2020 06:41:50 -0800