大家好,我正在尝试将数据从我的 Action Result 获取到 Ajax。
这是我的控制器:
public ActionResult Oku(int id)
{
var ho = db.news.Select(c => c.news_id == id);
return Json(ho,JsonRequestBehavior.AllowGet);
}
我在 Shared View Index.cshtml 中的脚本是
$.ajax({
type: "get",
url: "Home/Oku",
data: JSON.stringify([22]),
dataType: "json",
success: function(msg) {
alert(msg);
},
error: function(msg) {
alert(msg);
}
});
但是某处缺少一些东西,我无法解决。感谢您的帮助