1. ReactReact (also known as React.js or ReactJS) is a JavaScript library for building user interfaces. It is maintained by Facebook and a community of individual developers and companies. React can be used as a basis for developing single-page or mobile applications. However, React is only concerned with rendering data to the DOM, so creating React applications usually requires the use of additional libraries for state management and routing. Redux and React Router are examples of such libraries. Basic UsageBelow is a simple example of React using JSX and JavaScript in HTML. The Greeter function is a React component that accepts a prop greeting. The variable App is an instance of the Greeter component, with the greeting property set to "Hello World!". Then, the ReactDOM.render method renders our Greeter component in the DOM element (id is myReactApp). When displayed in a web browser, the result will be: Notable FeaturesComponentization React code consists of entities called components. Components can be rendered to a specific element in the DOM using the React DOM library. When rendering a component, it can pass in values called "props". The two main ways to declare components in React are through functional components and class-based components. Functional components Functional components are declared with a function that returns some JSX. Class ComponentClass-based components are declared using ES6 classes. They are also called "stateful" components because their state can be persisted throughout the component and can be passed to child components via props. Virtual DOMAnother notable feature of React is that it uses a virtual document object model, or virtual DOM. React creates an in-memory data structure cache, calculates the difference in changes, and only renders the subcomponents that have actually changed, thereby efficiently updating the DOM displayed by the browser. Lifecycle methodsLifecycle methods refer to hooks processing functions that allow code to be executed at set points during the lifecycle of a component.
JSXJSX, or JavaScript XML, is an extension to the JavaScript language syntax. JSX is similar to HTML in appearance, providing a way to structure component rendering using a syntax familiar to developers. React components are often written using JSX, although it doesn't have to be (components can also be written in pure JavaScript). JSX is similar to another extension syntax created by Facebook for PHP called XHP. An example of JSX code: Nested Elements Multiple elements on the same level need to be wrapped in a container element, such as the <div> element in the figure above. property JSX provides a set of element attributes that are intended to correspond to the attributes provided by HTML. These custom properties can also be passed to the component, and all properties will be received by the component as props. JavaScript ExpressionsJavaScript expressions (but not statements) can be used inside JSX using curly braces {}. The display result of the above code is: Conditional Statements If-else statements cannot be used in JSX, but conditional expressions can be used instead. The following example renders { i === 1 ? 'true' : 'false' } as the string 'true' when i is 1. The result will be: Functions and JSX can be used in conditional expressions: The result will be: Code written in JSX needs to be converted by tools such as Babel before it can be understood by web browsers. This processing is generally performed during the software build process, and then the built application is deployed. Architecture Beyond HTMLReact's basic architecture isn't just for rendering HTML in the browser. For example, Facebook has dynamic charts that render to a <canvas> tag, while Netflix and PayPal use universal loading, rendering the same HTML on both the server and the client. React HooksHooks are functions that let developers "hook into" React state and lifecycle features from function components. They make the code more readable and easier to understand. Hooks do not work inside class components, and its ultimate goal is to eliminate the existence of class components in React. React provides some built-in Hooks, such as useState, useContext, useReducer, and useEffect. They are all documented in the Hooks API reference. The most commonly used are useState and useEffect, which respectively control the state and detect state changes in React components. Rules for HooksHooks also have some rules that must be followed before using Hooks:
Building your own Hooks, also known as custom Hooks, allows you to extract component logic into reusable functions. A custom hook is a JavaScript function whose name starts with "use" that can call other hooks. The same rules for hooks apply to them. Common termsReact does not attempt to provide a complete "application library". It is designed specifically for building user interfaces and therefore does not include many of the tools that some developers think they need to build applications. This allows developers to choose any library to accomplish tasks such as performing network access or local data storage. This situation also determines that the standards for React technology cannot be unified when creating web applications. Use of Flux architectureTo support React's concept of unidirectional data flow (in contrast to AngularJS/Angular's bidirectional data flow), the Flux architecture is a representative alternative to the popular Model-View-Controller (MVC) architecture. The characteristic of Flux is that data actions are sent to a storage warehouse through a central dispatcher, and changes to the storage warehouse data are transmitted back to the view. When used with React, this transfer is done via component props. Flux can be considered a variation of the Observer pattern. React components in the Flux architecture should not directly modify any props passed to it, but should pass callback functions that can create data actions sent by the dispatcher to modify the store. A data action is an object whose job is to describe something that has happened: for example, a data action describes a user "following" another user. It may contain data such as: User ID, Target user ID, And the USER_FOLLOWED_ANOTHER_USER enumeration type. A repository is a data model that can change itself based on the data actions received from the scheduler. This pattern is sometimes expressed as "attributes flow down, data actions flow up". Since the inception of Flux, many implementations of Flux have been created, the most famous of which is Redux, which features a single storage repository, often referred to as a single source of truth for data. historyReact was created by Jordan Walke, a software engineer at Facebook, who released an early prototype of React called "FaxJS", inspired by PHP's HTML component library XHP. It was first deployed on Facebook’s News Feed in 2011 and later on Instagram in 2012. It was open sourced at the JSConf conference in the United States in May 2013. React Native was announced at Facebook's React Conf in February 2015 and open sourced in March 2015, enabling native Android, iOS, and UWP development. On April 18, 2017, Facebook announced React Fiber, a new core algorithm for the React library for building user interfaces. React Fiber will be the basis for any future improvements and feature development of the React library. On September 26, 2017, React 16.0 was officially released. On February 16, 2019, React 16.8 was officially released, which introduced React Hooks. Common commandsCreate a project:
Development environment operation:
Production environment packaging:
【Official website】 http://reactjs.org/ 【Latest version】 16.13.1 on March 19, 2020 【Authorization】 MIT License AngularAngular (often referred to as "Angular 2+" or "Angular v2 and above") is an open source TypeScript-based web application framework led by the Angular team at Google and a community of individuals and companies. Angular was rewritten from scratch by the same team that built AngularJS. Difference between Angular and AngularJS
(1) Static typing, including Generics (2) Notes
historyname Initially, the rewrite of AngularJS was called "Angular 2", but this led to confusion among developers. To clarify, the team announced that different terminology would be used for each framework, with "AngularJS" referring to versions 1.X and "Angular" referring to versions 2 and above. Version 2 Angular 2.0 was announced at the ng-Europe conference on October 22-23, 2014. The drastic changes in version 2.0 caused considerable controversy among developers. On April 30, 2015, Angular developers announced that Angular 2 was moving from Alpha to developer preview. In December 2015, Angular 2 was moving to Beta. The first release candidate was released in May 2016, and the final version was released on September 14, 2016. Version 4 Angular 4 was released on December 13, 2016, skipping 3 to avoid confusion caused by the misalignment of the router package version. The version released at that time was v3.3.0. The final version was released on March 23, 2017. Angular 4 is backward compatible with Angular 2. Angular 4.3 version is a minor release which is a drop-in replacement for the 4.xx version. Version 4.3 introduces HttpClient, a smaller, easier to use, and more powerful HTTP request library. New router lifecycle events for keepers and resolvers. Four new events. GuardsCheckStart, GuardsCheckEnd, ResolveStart, and ResolveEnd join the existing set of lifecycle events such as NavigationStart. Conditionally disable animations. Version 5 Angular 5 was released on November 1, 2017. The main improvements of Angular 5 include support for progressive web applications, build optimizer, and improvements related to Material Design. Version 6 Angular 6 was released on May 4, 2018. In this version, the focus is not on the underlying framework, but more on the tool chain, and making it easier to update and upgrade Angular in the future, such as: ngupdate, ng add, Angular elements, Angular Material+CDK components, Angular Material starter components, CLI workspaces, library support, tree shaking providers, animation performance improvements, and RxJS v6. Version 7 Angular 7 was released on October 18, 2018. The updates cover application performance, Angular Material & CDK, virtual scrolling, accessibility improvements for Selects, support for content projection using web standards for custom elements, and dependency updates for Typescript 3.1, RxJS 6.3, and Node 10 (Node 8 is still supported). Version 8 Angular 8 was released on May 28, 2019. Features differential loading of all application code, dynamic imports for lazy routing, web workers, TypeScript 3.4 support, and Angular Ivy is available as a preview. Angular Ivy preview includes:
Version 9 Angular 9 was released on February 6, 2020. Version 9 uses the Ivy compiler by default. Angular is compatible with TypeScript 3.6 and 3.7. In addition to hundreds of bug fixes, the Ivy compiler and runtime provide many advantages:
ComponentizationA component example Html part Typescript part routing Data ManagementDefining Service Classes Calling service class Common commandsFrom the terminal, install the Angular CLI globally:
Create a new Angular CLI workspace using the ng new command:
Development environment operation:
Production environment packaging:
【Official website】 https://angular.io/ 【Latest version】 9.1.2 on April 15, 2020 【Authorization】 MIT License 3. VueVue.js (often just called Vue; pronounced /vjuː/, like "view") is an open source Model-view-viewmodel JavaScript framework for building user interfaces and single-page applications. It was created by Evan You and is maintained by him and core members from various companies including Netlify and Netguru. OverviewThe characteristic of Vue.js is that it adopts a progressive architecture and focuses on declarative rendering and component synthesis. Advanced features required for complex applications, such as routing, state management, and build tools, are provided through officially maintained support libraries and packages, with Nuxt.js being one of the most popular solutions. Vue.js allows you to extend HTML using HTML attributes called directives. historyVue was created by Evan You. While working at Google, he participated in the development of multiple projects using AngularJS technology, and later created Vue. He later summarized his thought process. "I thought, what if I could take the really great parts of AngularJS and build something lightweight?" The first source code commit to the project was in July 2013, and Vue was first released in February 2014. ComponentizationVue components extend basic HTML elements to encapsulate reusable code. From a high-level perspective, components are custom elements that the Vue compiler attaches behavior to. In Vue, a component is essentially a Vue instance with preset options. The following code snippet contains an example of a Vue component. This component displays a button and prints out the number of times the button has been clicked. templateVue uses an HTML-based template syntax that allows the rendered DOM to be bound to the underlying data of the Vue instance. All Vue templates are valid HTML and can be parsed by compliant browsers and HTML parsers. Vue compiles templates into virtual DOM rendering functions. The virtual Document Object Model (or "DOM") allows Vue to render components in memory before updating the browser. Combined with the reactive system, Vue is able to calculate the minimum number of components that need to be re-rendered and initiate the minimum amount of DOM operations when the App state changes. Vue users can use template syntax or choose to write render functions directly using JSX, which allows applications to be built from software components. Reactive SystemsVue features a reactive system that uses pure JavaScript objects and optimized re-rendering. Each component keeps track of its reactive dependencies during rendering, so the system knows exactly when to re-render, and which components need to re-render. Transformation effectsVue provides a variety of methods to deploy transition effects when items are inserted, updated, or removed from the DOM. This includes the following tools:
When elements in a transform component are inserted or removed, this happens:
routingOne of the traditional drawbacks of single-page applications (SPAs) is the inability to share links to exact "sub" pages within a specific web page. Since SPAs only serve a single URL-based server response to the user (it usually serves index.html or index.vue), it is often difficult or even impossible to bookmark certain screens or share links to specific sections. To solve this problem, many client-side routers use "hashbang" (#!) to delimit dynamic URLs, such as http://page.com/#!/. However, in HTML5, most modern browsers support routing without the hashbang. Vue provides an interface for changing the content displayed on a page based on the current URL path - this can be done in a variety of ways (whether through an email link, a refresh, or an in-page link). Additionally, using a front-end router allows you to intentionally transition browser paths when certain browser events (such as clicks) occur on buttons or links. Vue itself does not come with front-end routing. But the open source "vue-router" package provides an API to update the application's URL, supports a back button (navigation history), and supports authentication URL parameters for email password resets or email verification links. It supports mapping nested routes to nested components and provides fine-grained transition control. With vue-router added, components only need to be mapped to the routes they belong to, and the parent/root route must indicate where the child routes should be rendered. The above code:
EcosystemThe tools and libraries that come with the core library are developed by the core team and contributors. Official Tools
Official library
Common commandsInstallation Tools
Create a project:
Development environment operation:
Production environment packaging: npm run build 【Official website】 https://vuejs.org/ 【Latest version】 2.6.1 on December 13, 2019 【Authorization】 MIT License IV. SummaryThis article makes a relatively detailed exploration of the current top front-end technologies. A major direction of front-end technology is single-page application (SPA). When selecting front-end technology for this business, we need to consider the following aspects: 1. Members’ current skills. This is a very realistic issue. Most programmers will choose technologies that they are more familiar with. Here you need to think about whether the technology you are currently familiar with is the best option? 2. Available learning time. If you find that the technology you want to use requires some time to learn, will this time expenditure conflict with the development progress? 3. Whether the complexity of the project can be kept to a minimum is a key factor. The reason why advanced technology is advanced is that it allows developers to focus their time and energy on real business development. If the technology to be used requires a lot of configuration that is not related to the business, you need to ask a question: is there a better way? The above is a detailed explanation of the three major front-end technologies of React, Angular, and Vue. For more information about the three major front-end technologies of React, Angular, and Vue, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Solution to the problem that a Linux modification of MySQL configuration does not take effect
>>: Completely uninstall mysql. Personal test!
Table of contents 1 redis configuration file 2 Do...
Writing XHTML demands a clean HTML syntax. Writing...
Preface: To store multiple elements, arrays are t...
Table of contents 1. Declare a function 2. Callin...
Preface We need to retrieve certain data that mee...
Pull the image root@EricZhou-MateBookProX: docker...
Table of contents 1. Database Operation 1.1 Displ...
This article collects 20 excellent web page color ...
Table of contents rc.local method chkconfig metho...
Table of contents 1.1. Network access between con...
1. Requirements When using the Vue.js framework t...
Table of contents Stabilization Throttling Summar...
Preface Tip: Here you can add the approximate con...
It's embarrassing to say that I had to search ...
We all know that data is priceless. If we don’t b...