android – Retrofit 2检查调用URL

android – Retrofit 2检查调用URL,第1张

概述有没有可能比较调用URL和Retrofit 2中的字符串? 例如,我们可以使用这个baseUrl: https://www.google.com 而这个电话: public interface ExampleService { @GET("dummy/{examplePartialUrl}/") Call<JsonObject> exampleList(@Path("example 有没有可能比较调用URL和Retrofit 2中的字符串?

例如,我们可以使用这个baseUrl:

https://www.Google.com

而这个电话:

public interface ExampleService {    @GET("dummy/{examplePartialUrl}/")    Call<JsonObject> exampleList(@Path("examplePartialUrl") String examplePartialUrl;}

有这个要求:

Call<JsonObject> mCall = dummyService.exampleList("partialDummy")

在从通话中获得响应之前,有办法获取https://www.Google.com/dummy/partialDummy或者dummy / partialDummy吗?

解决方法 假设您正在使用Okhttp和Retrofit,您可以执行以下 *** 作:

dummyService.exampleList( “partialDummy”).请求().URL().的toString()

根据Okhttp文档应该打印:

https://www.Google.com/dummy/partialDummy

总结

以上是内存溢出为你收集整理的android – Retrofit 2检查调用URL全部内容,希望文章能够帮你解决android – Retrofit 2检查调用URL所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1134550.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存