Comments (3)
Support requests filed as GitHub issues often go unanswered. We want you to find the answer you're looking for, so we suggest the following alternatives:
Coding Questions
If you have a coding question related to React and React DOM, it might be better suited for Stack Overflow. It's a great place to browse through frequent questions about using React, as well as ask for help with specific questions.
https://stackoverflow.com/questions/tagged/react
Talk to other React developers
There are many online forums which are a great place for discussion about best practices and application architecture as well as the future of React.
https://reactjs.org/community/support.html
from react.
Problem is solved by updating state in different way.
setOriginal(prevState =>
prevState.map((x, i) =>
i == 0 ? {...x, name: e.target.value } : x
)
)
from react.
To get to the root of your problem, in JavaScript objects are passed by reference not by value. So when you call submit
you're setting the value of copy
to a reference of the original
object.
You can test it by adding this snippet to your sandbox:
useEffect(() => {
console.log("original[0] === copy[0]", original[0] === copy[0]);
}, [original[0], copy[0]]);
Initially original[0] === copy[0]
will be false. After you submit, original[0] === copy[0]
will be true.
from react.
Related Issues (20)
- Bug:
- Bug:
- Cannot read properties of undefined (reading 'create') HOT 2
- react
- Warnings only logged once even for different roots and renders HOT 1
- When debugging React v18 source code, I installed @babel/preset-flow as prompted, but I still get an error. HOT 2
- When I reload deployed reactjs app on any page other than main routes it says not found HOT 4
- Bug: The scroll bar of the sidebar is getting hidden while hovering in the describing UI section (in Learn React). HOT 5
- Bug: updating state to an existing value is (incorrectly?) triggering a re-render HOT 5
- e.stopPropagation() and dropdown HOT 2
- Bug: HOT 2
- Bug: autoFocus cannot be used with an anchor (link) HOT 6
- Bug: 打包后报错 HOT 4
- Bug: MessageChannel in Scheduler prevents Jest test from exiting
- Bug: Suspense should hide Portals deeper in the tree
- Bug: Text in Docs HOT 1
- Blank screen Issue - Due to old build file HOT 1
- Bug:
- problem HOT 2
- Bug: old JSX from previous rendering visible in strict mode HOT 6
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.