从列表数组中追加一个值-反应原生

时间:2018-09-11 08:32:06

标签: javascript reactjs react-native jsx

此API要求我发送一些逗号分隔的数据,在处理用户输入时,我使用诸如此类的复选框

   <SelectMultiple
      items={dairy}
      selectedItems={this.state.selectedIngredients}
      onSelectionsChange={this.onSelectionsChange} />

如果我在FlatList上渲染selectedIngredients(使用item.value),我绝对可以看到输入,但是当我尝试打印实际的URL时,我得到了这个[object,Object]

我在视图中使用了this.state.selectedIngredients,结果如下:

  

url.com/api /?= [对象对象],[对象对象],[对象对象]

在我的search函数中,我使用该代码来处理用户输入:

  const { selectedIngredients } = this.state;
  let url = "url.com/api/?i=" + selectedIngredients

在库的文档中,他们说所选项目是字符串或{标签,值}的类型数组,我使用那里提供的方法来追加所选项目:

  onSelectionsChange = (selectedIngredients) => {
    // selectedFruits is array of { label, value }
    this.setState({ selectedIngredients})
  }

我尝试在两者上都添加.value,但这并不能解决我的问题。有人可以帮忙吗?

控制台记录this.state.selected成分:

Array [
  Object {
    "label": "Goat cheese",
    "value": "Goat cheese",
  },
  Object {
    "label": "Cream cheese",
    "value": "Cream cheese",
  },
  Object {
    "label": "Butter",
    "value": "Butter",
  },
]

2 个答案:

答案 0 :(得分:1)

selectedIngredients = [
 {
    "label": "Goat cheese",
    "value": "Goat cheese",
  },
  {
    "label": "Cream cheese",
    "value": "Cream cheese",
  },
  {
   "label": "Butter",
    "value": "Butter",
  },
]

let selectedValues = selectedIngredients.map((ingredient)=> ingredient.value)
let selectedValuesInString = selectedValues.join(',');
console.log(selectedValuesInString)

答案 1 :(得分:0)

这有点笨拙,但它会为您提供一个逗号分隔的字符串,并且没有结尾的逗号。

getPath$

请参见https://codesandbox.io/s/m5ynqw0jqp

另外,请参见穆罕默德·阿什法克(Mohammed Ashfaq)的答案,该方法不太笨拙。