SetState在我手动启动OBJ而不是传递OBJ时起作用

发布于 2025-01-21 08:40:13 字数 515 浏览 0 评论 0原文

我正在尝试重复使用不同组件中的对象,所以我的最初OBJ。是空的,但是当我将其导出到我的组件和setState中时,它没有清除状态。但是当我安慰时。知道为什么会发生这种情况吗?

this.state = {
  name: '',
  lastName: '',
  age: 0,
  kids: 0
}

const myEmptyObj = {
  name: '',
  lastName: '',
  age: 0
}

// lets pretend this function has name, lastName, age, and kids with values
// this function should clear the state but update the kids to value 3. so everything    
// empty but the kids field

myFunctionClearState() {
  myEmptyObj.kids = 3;
  setState(myEmptyObj);
}

I am trying to reuse an object in different components so my initial obj. is empty but when i export it into my component and setState to obj., it doesn't clear the state. but when I console.log the obj., it comes back as expected. any idea why this is happening?

this.state = {
  name: '',
  lastName: '',
  age: 0,
  kids: 0
}

const myEmptyObj = {
  name: '',
  lastName: '',
  age: 0
}

// lets pretend this function has name, lastName, age, and kids with values
// this function should clear the state but update the kids to value 3. so everything    
// empty but the kids field

myFunctionClearState() {
  myEmptyObj.kids = 3;
  setState(myEmptyObj);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文