我应该在
中使用post方法发送4个参数[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "CustomerInsertPost/{Username}/{Password}/{lan}/{Cust}")]
int CustomerInsertPost(string Username, string Password, string lan, string Cust);
使用改造库。
这个“CustomerInsertPost”改装方法的格式是什么?
答案 0 :(得分:0)
http://square.github.io/retrofit/上的第一个例子是
public interface GitHubService {
@GET("users/{user}/repos")
Call<List<Repo>> listRepos(@Path("user") String user);
}
如果这也适用于POST请求,那么你几乎就在那里。