我正在使用来自https://www.npmjs.com/package/react-google-places-autocomplete的现成组件用于 google 自动完成位置
但我想用地方初始化它。(因为当我编辑表格时,我必须在那里显示该位置)
import React from "react";
import GooglePlacesAutocomplete from "react-google-places-autocomplete";
const GooglePlacesAutocompleteComponent = () => (
<div>
<GooglePlacesAutocomplete
apiKey="xxxxxxxxxxxxxxx"
/>
</div>
);
export default Component;
以上是组件
和用途是
<GooglePlacesAutocompleteComponent />}
我知道react-google-places-autocomplete
用途react-select
AsyncSelect
<AsyncSelect
{...selectProps}
loadOptions={fetchSuggestions}
getOptionValue={({ value }) => value.place_id}
/>
fetchsugestions 是 {label and value} 的列表
如何传递初始值