android - Retrofit API的GET
PHP中文网
PHP中文网 2017-04-17 17:50:26
0
1
499

https://api.heweather.com/x3/weather?cityid=城市ID&key=XXXXXXXXX
这种API 如何用Retrofit 来书写呢

     @GET("x3/weather?cityid={cityid}&key={apikey}")
    Call<WeatherResult> WeatherGet(@Path("cityid") String id,@Path("apikey") String key);
这样写 被提示要使用`@Query("cityid") String id`

Call<WeatherResult> WeatherGet(@Query("cityid") String id,@Path("apikey") String key);


修改完后 又被提示 Path 不能放在 Query后面

那么我想问这样的API 如何写呢

PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(1)
阿神

https://futurestud.io/tutoria... 根據這個來看應該就是這麼寫吧

    @GET("x3/weather")    
    Call<WeatherResult> WeatherGet(@Query("cityid") String id,@Query("apikey") String key);

這裡的為什麼不能使用path了,因为这里的api_key是作为查询字符串,所以使用的querypath代表的是帶層次的檔案路徑。
參考資源
https://zh.wikipedia.org/wiki...

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!