Teach you to write a simple micro front-end frame

Recently, I saw the source code of several micro front-end frameworks( single-spa,qiankun,micro-app ), I feel I have gained a lot. So I plan to build a mini wheel to deepen my understanding of what I have learned. This wheel will be divided into five versions to gradually realize a minimum available micro front-end frame: Support sub applicat ...

Added by electronish on Sun, 27 Feb 2022 10:13:19 +0200

DVWA-CSRF Cross Station Request Forgery - High level

Basic knowledge introduction to csrf attack process Experimental environment: CSRF simulated attack environment (this is the Intranet environment. The public network only needs to map the port, and other operations are the same) CentOS7 DVWA server (analog transfer system) 192.168.0.9 kali hacker (attacker) 192.168.0.2 Win10 user (vict ...

Added by lupld on Sun, 27 Feb 2022 08:20:21 +0200

HTML, JSP paging ideas and code implementation (both non plug-ins and plug-ins)

Non plug-in, pure code implementation This is the effect diagram of code implementation:   First, if the normal pagination is written for the first time, you can modify it on this basis after all the tables are written. Parameters to be added: start from the first few, query several pieces of data, pageSize (self determined), to ...

Added by BenS on Sun, 27 Feb 2022 04:37:33 +0200

JSDOM and BOM study day 6

Day 6 of BOM and DOM learning Today's learning objectives Mobile web effects 1. Touch screen events 1.1 overview of touch screen events Browser compatibility: the mobile browser has good compatibility and can safely write code using native js Features of mobile terminal: touch event The touch object represents a touch point Common ...

Added by londonjustin on Sun, 27 Feb 2022 04:26:16 +0200

JavaScript condition and loop structure

Learning objectives Master the key points of using JavaScript conditional structure statementsMaster the simple method of JavaScript to get and modify HTML elementsMaster the usage of common events in JavaScriptMaster the key and difficult points of using JavaScript circular structure statementsMaster the use of break and continue keywords ...

Added by thepip3r on Sat, 26 Feb 2022 22:20:40 +0200

Smart use of CSS to mosaic pictures

Python WeChat Subscription Applet Course Video https://edu.csdn.net/course/detail/36074 Python Actual Quantitative Transaction Finance System https://edu.csdn.net/course/detail/35475 1. Introduction to image-rendering An interesting feature in CSS is called image-rendering It can use algorithms to display the scaled pictures better. Suppo ...

Added by belphegor on Sat, 26 Feb 2022 19:33:43 +0200

[Vue] Part XII communication between components (custom event, global event bus, message subscription and Publication) is very important

[Vue] Part XII communication between components (custom event, global event bus, message subscription and Publication) is very important 12. Communication between components (custom event, global event bus, message subscription and Publication) 12.1 component customization events Function: it can realize the communication between ...

Added by worldofcarp on Sat, 26 Feb 2022 19:06:19 +0200

Overview of vue component data transmission, minxin and vuex

Summary of data transfer methods of vue components Component slot Named slot Parent component <ss @toFOO="zidata=$event"> <p slot="slot1">Slot 2</p> <p slot="slot2">Slot 3</p> </ss> Subcomponents <slot name="slot1"></slot> <slot name="slot2"></slot> When defining a ...

Added by zleviticus on Sat, 26 Feb 2022 18:38:08 +0200

HTML learning notes

Form labels and form labels form Form creation What is a form Forms are used to collect information, such as registration, login, sending comments and feedback, purchasing goods, and so on Created form <form action="save.php" method="post"></form>Start with the < form > elementThe action attribute indicates the web ...

Added by grantf on Sat, 26 Feb 2022 17:14:07 +0200

js event loop details

In js event loop, we need to distinguish the environment, because javascript can run in node environment and browser environment. So we summarize js event cycle from these two aspects. 1, js thread in browser Is the browser a process? Is there only one thread in it? At present, most browsers are actually multi process. When we open a tab page ...

Added by saito on Sat, 26 Feb 2022 15:53:03 +0200