我正在尋找如何在ASP.Net Core中將參數從Ajax請求傳遞到Web API控制器的方式,如經典ASP中的query string
。 我在下面嘗試過,但沒有奏效。如何將參數從Ajax請求傳遞到Web API控制器?
查看:
"ajax":
{
"url": "/api/APIDirectory/[email protected]"
"type": "POST",
"dataType": "JSON"
},
控制器:
[HttpPost]
public IActionResult GetDirectoryInfo(string reqPath)
{
string requestPath = reqPath;
// some code here..
}
任何人都可以請告知可在asp.net核心Web API來實現這一目標的途徑?
確保'@ ViewBag.Title'不爲空。 – Xyroid