<Select
value={this.state.value}
placeholder="請輸入關鍵字"
showSearch
filterOption={false}
onPopupScroll={(e)=>{
const { target } = e;
// target.scrollTop + target.offsetHeight === target.scrollHeight 判斷是否滑動到底部
if( target.scrollTop + target.offsetHeight === target.scrollHeight){
// 在這里調用接口
}
}}
>
{list.map(item) => <Option key={item.id}>{item.name}</Option>}
</Select>