...">
美文网首页
Retrofit 的请求路径的三种方式

Retrofit 的请求路径的三种方式

作者: 海在路上 | 来源:发表于2017-07-27 10:16 被阅读17次

    静态路径:

    public interface Api {

    @GET("value1/value2")

    Call <List<object>> getData();

    半静态方式:

    public interface Api {

    @GET("{path}/value2")

    Call <List<object>> getData(@Path("path") String path);

    动态:

    public interface Api {

    @GET

    Call <List<Object>> getData(@Url String path);

    参考博客:

    Retrofit2.0中注解使用方式

    相关文章

      网友评论

          本文标题:Retrofit 的请求路径的三种方式

          本文链接:https://www.haomeiwen.com/subject/ygzakxtx.html