是否可以知道在给定查询 googlePlaces API 后返回的结果数?
当前正在使用此可行的实现方式:
#Code1:
a=['vishnu','priya','vishnu','hi','hi','hello']
b=set(a)
print("list is",a)
print("unique set is",b)
for i in b:
print("i is",i)
for j in a: /* original list */
print("j is",j)
if i==j:
a.remove(j)
print("after deletion",a)
#Code2:
a=['vishnu','priya','vishnu','hi','hi','hello']
b=set(a)
print("list is",a)
print("unique set is",b)
for i in b:
print("i is",i)
for j in a[:]: /* List slicing */
print("j is",j)
if i==j:
a.remove(j)
print("after deletion",a)
我也很好奇此呼叫的工作方式。
从发出的请求中检索数据并不简单。
据我所知,此块打开了与 googlePlaces API 的连接。
在控制台中检查 const { inputRef } = this.props.inputRef
const autoComplete = new this.googleApi.places.Autocomplete(
inputRef,
INIT_OPTIONS
);
autoComplete.addListener("place_changed", () => {
this.parseAddress(autoComplete.getPlace());
});
对象之后,新的请求数据存在/被深埋在对象中。
我也已经研究过使用autoComplete
,但这将需要与已经工作的方法截然不同的方法。
如何获取给定搜索查询返回的对象数组的长度?