retrofit 错误解析

example.luokx.loadmore_2016_03_02_09_56.MainActivity}: java.lang.IllegalArgumentException: @Field parameters can only be used with form encoding. (parameter #1)


//登录
@FormUrlEncoded
@POST("api/Login")
Call login(@Field("usercode") String first, @Field("password") String last);
需要在前面加上 @FormUrlEncoded


你可能感兴趣的:(retrofit 错误解析)