我有非常简单的 MVC 模型,其中我有两个非常简单的模型类 Person 和 Company。
我必须使用 Web 服务来获取有关人员和公司的数据。
您能否发布一些示例链接,其中将 Web 服务用于 GET 或/和 POST。
这是我的控制器索引方法。
public ActionResult Index(string id)
{
Webservice webservice = new Webservice();
}
[HttpPost]
public ActionResult Index(string id)
{
Webservice webservice = new Webservice();
}
我不知道是在 Get 还是 Post 中编写上面的代码。