login?username=xxx&&password=123456 post请求
改为
@POST("login")
Observable<ServerResponse<T>> login(@Query("username") String username, @Query("password") String password) ;
@Query就是问号后面的参数
login?username=xxx&&password=123456 post请求
改为
@POST("login")
Observable<ServerResponse<T>> login(@Query("username") String username, @Query("password") String password) ;
@Query就是问号后面的参数