我如何在asp.net MVC中使用web api

时间:2018-03-06 06:34:59

标签: asp.net asp.net-mvc asp.net-web-api put

我是.Net MVC的新手。我正在尝试使用在NodeJS中创建的Web API创建示例CRUD应用程序。

使用.net MVC中的以下代码从DB(MSSQL)读取数据工作正常

 List<student> students = new List<student> { };
 HttpResponseMessage response = await client.GetAsync(path);
 if (response.IsSuccessStatusCode)
 {
     students = await response.Content.ReadAsAsync<List<student>>();
 }

我想通过使用.net MVC中的节点api来更新DB中的记录。我使用下面的代码,但它不起作用,

HttpResponseMessage response = await client.PutAsJsonAsync(
            "localhost:8082/update", data);
response.EnsureSuccessStatusCode();

student std = await response.Content.ReadAsAsync<student>();

我想知道如何使用PUT方法使用web api。  任何帮助将不胜感激!

0 个答案:

没有答案