我總是得到'錯誤'警報,我無法弄清楚什麼是錯的。我只是試圖找回我發送的字符串(「testexpression」)。它必須是數據部分的東西,因爲沒有參數就可以工作。通過jQuery的傳遞數據ajax
這裏的jQuery的一部分:
<script>
$("#meaning").blur(function() {
$.ajax({
type: "POST",
url: '/GetMeaning/',
data: {"expression" : "testexpression"},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: successFunc,
error: errorFunc
});
function successFunc(data, status) {
$("#dictionaryDropDown").html(data);
}
function errorFunc() {
alert('error');
}
})
</script>
這是控制器:
public class GetMeaningController : Controller
{
//
// GET: /GetMeaning/
[HttpGet]
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(string expression)
{
return Json(expression, JsonRequestBehavior.AllowGet);
}
}
(更新:該類型後,我只是想出來用得也和我將其留在)