What’s ReactJS
React is a JavaScript library for building user interfaces. It’s modular, fast and readable.
These ‘fake HTML tags’ are called COMPONENTS. React Apps are “components of components”, which can use a tree structure to display. React is a framework that lets you divide up your website into reusable components. Each component is kind of like a ‘custom HTML tag’ that you define.
Props & States
Now we have our reuasble comment component:
- We pass props in from parent to child.
- Allows out skeleton to render comments with content.
- State keeps track of private information that can be changed and influence how your app renders.
Props
Props
: Inputs passed from a parent to a child component. Props are immutable(不可变的). In the html beside, name and text are all props(the inputs). Here, props = {name:"Akshaj", text:"Welcome to web lab!"}
1 | <Post name="Akshaj" text="Welcome to web lab!" /> |
States
State
: Private information(updatable pieces of information) maintained by a component.
1 | const [status, setStatus] = useState("busy"); |
Setting state is an asynchronous(异步) function! Once setState is called, we do not expect it to execute or finish right away.
Callback Functions
We can’t directly edit a component’s state from another component! One possible route is to pass the setCatHappiness function to child and then call it from there.
1 | // ParentComponent |
But note that this is a WORKAROUND(解决办法). You shouldn’t be doing this all the time - a well-designed component tree should try to avoid these issues, since this kind of stuff is a bit complex, unstable parent state.
useEffect hook
What if we want to do something immediately after state is changed? We need a new React feature for this: the useEffect hook!

useEffect hook runs after specific variables change:
- Can think of as response to state change.
- Commonly used to load data into state.
- Call an API/perform some computation/etc. as specific times.
syntax: useEffect(function, optional dependency array)
, runs function every time a variable in dependency array changes.
1 | // Add "me" to persons array. |
Dependency array examples:
- useEffect(function, [var1, var2]) runs function every time var1 or var2 changes.
- useEffect(function, []) runs function once, immediately after initialization.
- useEffect(function) runs every time any state variable changes.
Make states stay, make props pass
PROPS PASS DOWN is very importment. Remember that props pass down. On the component tree, if you structure yout post above your feed, this will make prop passing very difficult. So information should exist as a state in the highest level of the tree where it’s relevant, and be passed to every other part of the site via props.
Writing ReactJS Components
Take facebook for example, the component tree likes this:
- APP
- Post
- Comment
- Comment
- Comment
- Comment
- Post
For post, the postContent, isLiked is State
. For comment, the commentContent is Props
, while isLiked is State
.
1 | import React, { useState } from "react"; |
React-Guide-1
App.js
1 | import React from "react"; |
Intro.js
1 | import React from "react"; |
Photos.js
1 | import React from "react"; |
Post.js
1 | import React { useState }from "react"; |
Recap: Writing Components
- We divide our app into components, and put one in each file.
- Each component is a function with props as the input, and returns HTML-like code.
- () allow us to enter an HTML environment.
- Inside the HTML environment, {} allows us to create a mini JS environment.
- We pass in props with HTML tags.
- We read in those props with
.
function. - We declare state variavles with
const [something, setSomething] = useState(initialValue)
. - React uses
className
instead of class for css style.
- 本文作者: 夏花
- 本文链接: http://xiahua19.github.io/2022/08/11/weblab-3-ReactJS/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!