第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在對(duì)象數(shù)組中的數(shù)組中添加元素

如何在對(duì)象數(shù)組中的數(shù)組中添加元素

慕的地8271018 2022-10-27 16:35:22
我收到錯(cuò)誤:this.state.questions[key] is not iterable我想optiontext從輸入字段推送到options數(shù)組this.state = {  sections: [{    key: 1,    value: 1  }],  optionText: '',  questions: [{    id: Math.round(Math.random() * 1000000000000000),    query: '',    sectionId: 1,    selectedType: 1,    options: ['1st option', ],    isChecked: true  }],}addOption = (key) => {  const addtext = this.state.optionText //typed text in input   let option = this.state.questions[key].options; //trying to access array in array of object   this.setState({    questions: [...this.state.questions[key], addtext]  });}<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>  sections: [{ key: 1, value: 1 }],  optionText: '',      surveyTitle: '',      description: '',      questions: [{        id: Math.round(Math.random() * 1000000000000000),        query: '',        sectionId: 1,        selectedType: 1,        options: ['1st option',],        isChecked: true      }],    } addOption = (key) => {    const addtext = this.state.optionText //typed text in input     let option = this.state.questions[key].options; //trying to access array in array of object     this.setState({ questions: [...this.state.questions[key], addtext] });  }
查看完整描述

1 回答

?
慕田峪9158850

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

提取選項(xiàng)并附加一個(gè)值。在使用合并選項(xiàng)拼接新問題之前克隆問題。更新狀態(tài)。


this.state = {

  sections: [{

    key: 1,

    value: 1

  }],

  optionText: '',

  questions: [{

    id: Math.round(Math.random() * 1000000000000000),

    query: '',

    sectionId: 1,

    selectedType: 1,

    options: ['1st option', ],

    isChecked: true

  }],

}

addOption = (key) => {

  const addtext = this.state.optionText //typed text in input 

  let options = this.state.questions[key].options; //trying to access array in array of object 

  options = [...options, addText];

  const questions = [...this.state.questions];

  questions.splice(key, 1, {...questions[key], options});


  this.setState({

    questions

  });

}

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>



查看完整回答
反對(duì) 回復(fù) 2022-10-27
  • 1 回答
  • 0 關(guān)注
  • 95 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)