Retrofit:如何在改造中传递带有String参数的Array

时间:2017-08-06 05:43:00

标签: android retrofit

我正在尝试使用Retrofit向Google GeoCode API发送请求。服务界面如下所示:

 @GET("api/job/costestimate?stops[0][latitude]=40.72822&stops[0][longitude]=-73.70667000000003&stops[0][type]=pickup&stops[1][latitude]=40.7382953&stops[1][longitude]=-73.64537630000001&stops[1][type]=dropoff")
    Call<GetCostEstimateResponse> getCostEstimate(@Query("stops[{id}][latitude]") GetCostEstimateRequest getCostEstimateRequest, @Header("X-ACCESS-TOKEN") String xAccessToken);

如何通过Retrofit传递这种Structure参数

0 个答案:

没有答案