我正在尝试使用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;
}
答案 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}
/>