如何从单个数组中的选择中推送数据?

问题描述 投票:0回答:1

[我正在使用react-select,我的api希望我发送这样的字符串数组[“ purple”,“ red”,“ orange”],但是react-select给了我一个对象数组,所以我所做的是通过newValue映射,选择每个值并放入一个可变数组,但是我将每个值都放在单独的数组中,例如[“ purple”],[“ red”],[“ orange”]] >

handleChange = (newValue: any, actionMeta: any) => {
console.log("newValue-->",newValue);
newValue.map((obj: any) => {
  const array = [];
  array.push(obj.value);
  console.log("array-->",array);
});

enter image description here

完整代码:https://codesandbox.io/s/react-codesandboxer-example-sf7tz?file=/example.js

[我正在使用react-select,我的api希望我发送这样的字符串数组,例如[“ purple”,“ red”,“ orange”],但是react-select给了我一系列对象,所以我做了是通过newValue映射的...

javascript reactjs react-select
1个回答
0
投票

初始化地图外部的数组。

© www.soinside.com 2019 - 2024. All rights reserved.