我想使用组件过滤器发出google-maps请求,但语法不正确。
在开发人员站点上找不到。
我现在有这个:
axios.get('https://maps.googleapis.com/maps/api/geocode/json',{
params:{
address:location,
language: 'de',
components: (country | AT),
key:'APIKEY'
}
})
由于在开发人员站点上的书面内容,您应该使用管道将对分开...
我也尝试过:
components: {country:AT}
和
components: ({country:AT})
没有一个有效。有谁可以帮助我吗。