API測試獲得那個職位數據我有這個非常簡單的C#AsyncController名爲 「APIController」 爲:不能同時使用招
public class APIController : AsyncController{
[AllowAnonymous]
[HttpPost]
public string HelloWorld(Testing t)
{
return t.Name + " " + t.LastName;
}}
而且
public class Testing
{
[Required]
public string Name;
[Required]
public string LastName;
}
而且其可訪問 https://localhost:5958/mvc/api/HelloWorld
但是,當我試圖使用提琴手進行測試時,我無法獲取數據。請參閱附件。
添加相同,但沒有獲取數據(參數爲null) – Harini2017