我是.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。 任何帮助将不胜感激!