Origin of Ray

Lift the fog of the Internet together

As one of the most mainstream frameworks in front-end, vue has a large number of users. From students’ practice projects to large-scale projects of enterprises, vue has its commendable points. But once the project becomes huge, any project will become stuck. Here is an implementation of skeleton screen, one of the solutions to optimize vue User Experience. Strictly speaking, skeleton screen is also a way to optimize the first screen experience.

Read more »

When we develop a Website, there may be many reasons for our page Caton, so we can use Google Devtools to quickly locate the main reasons for page Caton. This article summarizes the two main and most direct tools on the Chrome official doc.

Read more »

Ext.extend

When using Extjs, we often use its custom component function to create the components we need, but there is a point to note when using Ext.extend, that is, if your custom component has some fixed items, then These items cannot be directly thrown into the configuration item, but need to be declared in the initComponent function.

Read more »

Overview of Same Origin Policy

Meaning

In 1995, the same origin policy was introduced into browsers by Netscape. Currently, all browsers implement this policy.
Originally, it meant that the cookie set by A webpage and B webpage cannot be opened unless the two webpages are “of the same origin”. The so-called “same origin” means “three are the same”. The protocol is the same, the domain name is the same, and the port is the same.

Read more »
0%