[我正在使用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);
});
完整代码:https://codesandbox.io/s/react-codesandboxer-example-sf7tz?file=/example.js
[我正在使用react-select,我的api希望我发送这样的字符串数组,例如[“ purple”,“ red”,“ orange”],但是react-select给了我一系列对象,所以我做了是通过newValue映射的...
初始化地图外部的数组。