android使用改造lib将post方法中的多参数发送到WCF服务?

时间:2016-06-15 17:53:45

标签: java android wcf retrofit

我应该在

中使用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”改装方法的格式是什么?

1 个答案:

答案 0 :(得分:0)

http://square.github.io/retrofit/上的第一个例子是

public interface GitHubService {
  @GET("users/{user}/repos")
  Call<List<Repo>> listRepos(@Path("user") String user);
}

如果这也适用于POST请求,那么你几乎就在那里。