JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END >

All

Setting global font family in React

Publish Date:2025/03/11 Author:JIYIK Category:React

Setting global font family in React

To set a global font family in React, you need to set the font-family style on the html element in your index.css file and then import the file into your index.js file. The global CSS should be imported in index.js to ensure it is loaded into your Rea...

Full

React using conditions in map()

Publish Date:2025/03/11 Author:JIYIK Category:React

Using conditions in `map()` in React: Call the map() method on an array. Use an if condition with an explicit return if satisfied. Otherwise return a different value or return null to render nothing....

Full

Using substring() method in React

Publish Date:2025/03/11 Author:JIYIK Category:React

To use the substring() method in React: Call the method on a string. Pass the start and end index as parameters to it. The method returns a new string containing only the specified portion of the original string....

Full

Deleting keys from state object in React

Publish Date:2025/03/10 Author:JIYIK Category:React

Deleting keys from state object in React

To remove a key from a React state object: Use the useState hook to store the state object. Destructure the key and remaining properties of the object. Set the state to the remaining properties....

Full

Add a class to the Body element in React

Publish Date:2025/03/10 Author:JIYIK Category:React

To add a class to the body element in React: Access the body element as document.body in a useEffect or event handler. Use the classList.add() method to add a class to the body tag. For example, document.body.classList.add('my-class'...

Full

Get the input value of the form submission in React

Publish Date:2025/03/10 Author:JIYIK Category:React

Get the input value of the form submission in React

Get input values ​​on form submission in React: Store the value of the input field in a state variable. Set the onSubmit attribute on the form element. Access the value of the input field in our handleSubmit function....

Full

Rendering nested arrays in React using map()

Publish Date:2025/03/10 Author:JIYIK Category:React

Rendering nested arrays using map(): Use the map() method to iterate over the outer array. In each iteration, call the map() method of the nested array. Render the elements of the nested array....

Full

Get the value of an Input field in React

Publish Date:2025/03/10 Author:JIYIK Category:React

Get the value of an Input field in React

To get the value of an input field in React: Declare a state variable that tracks the value of the input field. Add an onChange attribute to the input field. Use event.target.value to get the value of the input field and update the state variable....

Full

Get parent height and width in React

Publish Date:2025/03/10 Author:JIYIK Category:React

Get parent height and width in React

To get the height and width of the parent in React: Set the ref attribute on the element. In the useEffect hook, update the state variables for height and width. Use the offsetHeight and offsetWidth properties to get the height and width of the elemen...

Full

How to listen to state changes in React

Publish Date:2025/03/10 Author:JIYIK Category:React

How to listen to state changes in React

Use the useEffect hook to listen to state changes in React. We can add the state variable we want to track to the hook's dependencies array, and the logic in the useEffect hook will run every time the state variable changes....

Full

How to create a read more/less button in React

Publish Date:2025/03/10 Author:JIYIK Category:React

How to create a read more/less button in React

When building a web application, sometimes we need to display some long text. In this case, a smart design is to display only part of the text and add a Show More button for users to expand the text when needed. When the text is expanded and fully dis...

Full

Creating a Back Button with React Router

Publish Date:2025/03/10 Author:JIYIK Category:React

Creating a Back Button with React Router

To create a back button using React Router: Set the onClick property on the button to a function. Use the useNavigate() hook, e.g. const navigate = useNavigate();. Call the navigate() function, passing it -1 - navigate(-1)....

Full

How to toggle a boolean state in React

Publish Date:2025/03/10 Author:JIYIK Category:React

How to toggle a boolean state in React

Toggle Boolean state in React: Use the useState hook to track the state of a boolean. Pass a function to the setState function returned by the hook. Toggle the boolean based on the current value, e.g. setIsLoading(current => !current)....

Full

React: How to upload multiple files using Axios

Publish Date:2025/03/10 Author:JIYIK Category:React

This concise article shows you how to upload multiple files in React with the help of Axios. It’s not a big job and can be done in a few simple steps (you’ll see the Javascript and TypeScript code snippets in step 3)....

Full

Using onClick on Div Elements in React

Publish Date:2025/03/10 Author:JIYIK Category:React

Using onClick on Div Elements in React

To set an `onClick` listener on a div element in React: Set the `onClick` property on the div. Every time the div is clicked, the function we passed to the prop will be called. We can access the div via event.currentTarget....

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial