Escaping and canceling the escape of html special characters in java
1, Requirement description
1. The data from the front end is stored in the database, which needs to be escaped after the background
When the user fills in the data, sometimes some html special characters (such as trademark symbol) will be passed in. At this time, we need to escape the special characters from the front end, an ...
Posted by cueball2000uk on Thu, 13 Feb 2020 14:01:19 -0800
class and style of vue
This article refers to the official documents of vuejs, combined with their own understanding of the collation of reading notes!
When v-bind is used for class and style, the result of an expression can be an object or an array in addition to a string
Object syntax
<div class="static"
v-bind:class="{ active: i ...
Posted by thenewguy on Thu, 13 Feb 2020 12:14:12 -0800
Javascript -- registering event cases for elements
Example: registering an event for an element
<input type="button" value="separate html" id="btn1"/>
You can get the button first, and then register the event
<script>
//Get elements from the document based on the value of the id attribute
var btnObj=document.getEl ...
Posted by lawnninja on Thu, 13 Feb 2020 10:57:43 -0800
General mapper learning notes
General Mapper notes
Build development environment (spring boot)
Database tableImport dependency
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper</artifactId>
<version>4.0.4</version>
</dependency>
To configure
server:
port: ...
Posted by LightningSt on Wed, 12 Feb 2020 22:45:27 -0800
HTML basic notes list and fonts
3 lists
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
/*
Remove bullet
* */
/*ul{
list-style: none;
}*/
</style>
</head>
<body>
<!--
The lis ...
Posted by martor on Wed, 12 Feb 2020 10:14:33 -0800
Hystrix Circuit Breaker (Hoxton version)
Getting Started with Spring Cloud - Hystrix Circuit Breaker (Hoxton version)
Original
ThinkWon
Last released from December 29-27 15:25:21
Reading 680 Collections
Released from December 29-27 15:25:21
Category Column:
Spring Cloud
Cop ...
Posted by KindredHyperion on Wed, 12 Feb 2020 08:47:12 -0800
Array of C ා basis
Array of C ා basis
This paper introduces the array in C ා language, and realizes the program of prime number (bool array) and block game (button array) by the array.
I. array
1. Array overview
An array is a combination of data of the same type
Array belongs to reference type
How to declare a one- ...
Posted by dwu on Wed, 12 Feb 2020 07:04:24 -0800
Quick learning - comprehensive case restull CRUD
Chapter 7 comprehensive case
7.1 restrl? Crud? Requirements
7.1.1 display all employee information
URI: emps
Request method: GET
Display effect
7.1.2 add operation - go to add page
Show add page:
URI: emp
Request method: GET
Display effect
7.1.3 add operation - add employee
Add employee ...
Posted by saunders1989 on Wed, 12 Feb 2020 04:39:42 -0800
A detailed explanation of Python 3's method of visual analysis of pull hook data
This article mainly introduces the relevant materials about the visual analysis of the pull hook data of Python 3. The example code is introduced in detail in this article, which has certain reference value for you to learn or use Python 3. The friends who need to learn it will come to learn together
Pr ...
Posted by clartsonly on Tue, 11 Feb 2020 06:14:30 -0800
Front end learning from entry to advanced record 23 (webapi)
Learning objectives
Master the concept of API and Web API
Master the common way of calling API provided by browser
Can develop common page interaction functions through API
Be able to use search engine to solve problems
1. Web API
Introduction to Web API
The concept of API
API (Application Prog ...
Posted by lajocar on Tue, 11 Feb 2020 03:38:03 -0800