みなさん、こんにちは。アクション結果からAjaxにデータを取得しようとしています。
これが私のコントローラーです:
public ActionResult Oku(int id)
{
var ho = db.news.Select(c => c.news_id == id);
return Json(ho,JsonRequestBehavior.AllowGet);
}
そして、SharedViewIndex.cshtmlの私のスクリプトは
$.ajax({
type: "get",
url: "Home/Oku",
data: JSON.stringify([22]),
dataType: "json",
success: function(msg) {
alert(msg);
},
error: function(msg) {
alert(msg);
}
});
しかし、どこかに欠けているものがあり、私はそれを解決することができません。あなたの助けをありがとう