我尝试做一个get查询,它看起来像这样:url?位置=纬度、经度我试了这个代码:
@Query("locations") lat: List<Double>
但这结束于url?locations = laton & lon任何想法我怎么做才能获得这个网址?
czq61nw11#
我认为您只能使用上面提到的BakhtiyorBegmatov解决方案来实现您想要的目标:
@GET("locations") suspend fun getLocations( @Query("locations") latLongString: String ) : List<Location>
1条答案
按热度按时间czq61nw11#
我认为您只能使用上面提到的BakhtiyorBegmatov解决方案来实现您想要的目标: