ฉันกำลังพยายามเริ่มต้นด้วยการโทร ASP.NET MVC Ajax
ตัวควบคุม:
public class AjaxTestController : Controller
{
//
// GET: /AjaxTest/
public ActionResult Index()
{
return View();
}
public ActionResult FirstAjax()
{
return Json("chamara", JsonRequestBehavior.AllowGet);
}
}
ดู:
<head runat="server">
<title>FirstAjax</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var serviceURL = '/AjaxTest/FirstAjax';
$.ajax({
type: "POST",
url: serviceURL,
data: param = "",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: successFunc,
error: errorFunc
});
function successFunc(data, status) {
alert(data);
}
function errorFunc() {
alert('error');
}
});
</script>
</head>
ฉันต้องพิมพ์การแจ้งเตือนด้วยวิธีการควบคุมที่ส่งคืนข้อมูล รหัสด้านบนเพียงพิมพ์ "chamara" ในมุมมองของฉัน การแจ้งเตือนไม่เริ่มทำงาน
อัปเดต
ฉันแก้ไขคอนโทรลเลอร์ของฉันตามด้านล่างและมันเริ่มทำงาน ฉันไม่รู้ชัดเจนว่าทำไมถึงใช้งานได้ในตอนนี้ บางคนโปรดอธิบาย พารามิเตอร์ "a" ไม่เกี่ยวข้องฉันเพิ่มเพราะฉันไม่สามารถเพิ่มสองวิธีที่มีชื่อวิธีการและพารามิเตอร์เดียวกันฉันคิดว่านี่อาจไม่ใช่วิธีแก้ปัญหา แต่ใช้งานได้
public class AjaxTestController : Controller
{
//
// GET: /AjaxTest/
[HttpGet]
public ActionResult FirstAjax()
{
return View();
}
[HttpPost]
public ActionResult FirstAjax(string a)
{
return Json("chamara", JsonRequestBehavior.AllowGet);
}
}
{"name":"chamara"}
สตริงที่จัดรูปแบบ แล้วลองอ่านเป็นdata['name']