In this section we will discuss how to use components to make our application easier to manage.
Next, let’s package an output “Hello World!” Component named 1.We can use the function to define a component: You can also use ES6 class to define a component: 2、 Note that native HTML element names start with lowercase letters, while custom React class names start with uppercase letters, such as If we need to pass parameters to the component, we can use the In the above example Note that when adding attributes, the We can synthesize a component by creating multiple components, that is, separating the different function points of the component. In the following example, we implement a component that outputs the name and URL of the website: The App component in the instance uses the
In recent years, Geographic Information Systems (GIS) have undergone rapid development in both theoretical and practical dimensions. GIS has been widely applied for modeling and decision-making support across various fields such as urban management, regional planning, and environmental remediation, establishing geographic information as a vital component of the information era. The introduction of the “Digital Earth” concept has further accelerated the advancement of GIS, which serves as its technical foundation. Concurrently, scholars have been dedicated to theoretical research in areas like spatial cognition, spatial data uncertainty, and the formalization of spatial relationships. This reflects the dual nature of GIS as both an applied technology and an academic discipline, with the two aspects forming a mutually reinforcing cycle of progress. HelloMessage : 3.5.1. React instance ¶
functionHelloMessage(props){returnHelloWorld!
;}constelement=
Instance resolution: ¶
function HelloMessage(props) {
return Hello World!
;
}
class Welcome extends React.Component {
render() {
return Hello World!
;
}
}
const element = HelloMessage can’t be written as helloMessage . In addition, it is important to note that the component class can only contain a top-level tag, otherwise an error will also be reported. this.props object. An example is as follows: 3.5.2. React instance ¶
functionHelloMessage(props){returnHello{props.name}!
;}constelement=
name property through the props.name to get. class attribute needs to be written as className , and the for attribute needs to be written as htmlFor because’ class’ and for are reserved words in JavaScript. Composite component ¶
3.5.3. React instance ¶
functionName(props){returnSite Name:{props.name}
;}functionUrl(props){return
Website address:{props.url}
;}functionNickname(props){return
Website nickname:{props.nickname}
;}functionApp(){return( Name 、 Url and Nickname component to output the corresponding information.
Principles, Technologies, and Methods of Geographic Information Systems
102