Articles under the 'Front End' tag
The use of Https encrypted hypertext transfer protocol
Knowledge of https
Introduction of https
HTTPS (full name: Hypertext Transfer Protocol Secure), is a secure HTTP channel that secures the transmission process through transport encryption and authentication on top of HTTP. HTTPS adds SSL to HTTP, the secure foundation of HTTP
...
More >>
2022-10-25
Front End
/
Http
/
Https
Towards anonymity, talk about the new authorized login for WeChat applets
In February 2021, the WeChat team made an interface adjustment for small program login and user information access, a move that unprecedentedly shook up almost all small program developers and generated a lot of reactions in the small program community.
As an access party, this paper will discuss th
...
More >>
2022-10-11
Front End
/
WeChat applets
/
Authorized
Analysis of front-end variables to enhance var, let
Let's start with a question to warm up
var a = 12,
b = 13,
c = 14;
function fn(a) {
console.log(a, b, c);
var b = c = a = 20;
console.log(a, b, b)
}
fn(a);
console.log(a, b, c)
What the answer is will not be published first, but first we need to kno
...
More >>
2022-09-29
JavaScript
/
Front End
/
Var
/
Let
There are security issues with code written this way !
JavaScript prototypes are known and used by many people, but many people use prototype inheritance in the security problems caused by few people know, next we will understand it well.
In real development, we often use property accessors in our code and use user input parameters to access the
...
More >>
2022-09-20
Security
/
JavaScript
/
Front End
An article to understand what is web3
web1.0 and web2.0Web 1.0 and Web 2.0 refer to the era in the history of the World Wide Web as it evolved through various technologies and formats. Web 1.0 refers roughly to the period from 1991 to 2004, when most Web sites consisted of static pages and the vast majority of users were consumers of co
...
More >>
Three cross-domain solutions HttpClient, annotations, gateways
Annotation: @CrossOrigin
Gateway Integration
Httpclient
Why is there a cross-domain problem
Because of the browser's same-origin policy, cross-domains are created. For example, an asynchronous request is sent to two different sources, such as two d
...
More >>
2022-08-30
HttpClient
/
Back End
/
Front End
/
Domain
/
Gateway Integration