java.lang.IllegalArgumentException: No Retrofit annotation found. (parameter #1) for method ApiServ
Posted liyyanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.IllegalArgumentException: No Retrofit annotation found. (parameter #1) for method ApiServ相关的知识,希望对你有一定的参考价值。
@FormUrlEncoded @POST("getMethod") Observable<Bean> getMethod(String field);
今天在写Retrofit 网络接口时,报错:
java.lang.IllegalArgumentException: No Retrofit annotation found. (parameter #1) for method ApiService.getMethod
其中正确的写法应该是:
@FormUrlEncoded @POST("getMethod") Observable<Bean> getCity(@Field("field") String field);
以上是关于java.lang.IllegalArgumentException: No Retrofit annotation found. (parameter #1) for method ApiServ的主要内容,如果未能解决你的问题,请参考以下文章