我想在我的應用程序使用jQuery 3.1測試我寫在控制器的下一個方法:jQuery的不MVC找到控制器4
[HttpGet]
public string GetNotice()
{
return "Hello world!";
}
和JS代碼在我HomePage.html:
<script type="text/javascript">
$("#saveNotice").button().click(function() {
$.get('/Controllers/NoticeController/GetNotice', function (data) {
console.log(data);
});
});
我總是有錯誤:
ET http://localhost:58421/Controllers/NoticeController/GetNotice 404 (Not Found)
也許有人知道我怎麼能解決這個問題?
項目文件夾中的HomePage.html語言環境。
只是刪除了'\ Controllers' – Alexis