在Kotlin中使用retrofit进行查询

erhoui1w  于 2023-03-03  发布在  Kotlin
关注(0)|答案(1)|浏览(121)

我尝试做一个get查询,它看起来像这样:url?位置=纬度、经度
我试了这个代码:

@Query("locations") lat: List<Double>

但这结束于url?locations = laton & lon
任何想法我怎么做才能获得这个网址?

czq61nw1

czq61nw11#

我认为您只能使用上面提到的BakhtiyorBegmatov解决方案来实现您想要的目标:

@GET("locations")
suspend fun getLocations(
   @Query("locations") latLongString: String
) : List<Location>

相关问题