react-native-sectioned-multi-select反应导航器如何转换为数组项

时间:2018-08-18 04:39:59

标签: javascript reactjs react-native react-navigation

我正在尝试使用aws ec2 run-instances --image-id ami-d783a9b8 --subnet-id subnet-d3fdbabb --security-group-ids sg-0e81c2a33e1039f58 --count 1 --instance-type t2.micro --key-name "datastructutrekey" --query 'Instances[0].InstanceId' ,并且我知道该数组必须具有名称和ID。因此,我试图从url中获取数据并将其存储为数组,但是下拉列表除了加载圆圈之外什么都没有显示。

position: fixed

这是我上面的代码,我不确定如何正确地将数组推入新项目数组以使列表正常工作。

数据格式应仅为

.fixed-part{
    position: fixed;
    bottom:0;
    width: 100%;
    height: 150px;
    overflow: visible;
    border-top: solid 2px #ccc;
    background-color: #fff;
    z-index: 2;
}

1 个答案:

答案 0 :(得分:-1)

在您的items中,您应该发送this.state.data,它应该可以正常工作:

<SectionedMultiSelect
    items={this.state.data} /* ** Here ** */ 
    uniqueKey='id'
    selectText='Choose some things...'
    showDropDowns={false}
    readOnlyHeadings={false}
     onSelectedItemsChange={this.onSelectedItemsChange}
     selectedItems={this.state.selectedItems}
 />