-2
我可以發送到操作方法的新記錄,然後用同樣的方法Asp.net mvc5同樣的動作POST和GET相同的方法
public class HomeController : Controller
{
[HttpGet]
[HttpPost]
public JsonResult _sendConfirmation'(string subject,string mail)
{
Some Code--Some Code---Some Code
return Json(new { Success = true, id = newCreatedMailId });
}
}
的jQuery獲取id來獲取新的ID
$.getJSON('/Mails/_sendConfirmation', function (comingData) { alert("success" + data); jQuery.get('/Mails/_getNewMailSendConfirmation', { id: comingData }, function (data) { jQuery('#myModal').modal('show'); jQuery('#myModal .modal-body').html(data); });
enter code here
你的代碼在某種程度上失敗了嗎?當你嘗試*時會發生什麼?你在嘗試什麼? – David
我在瀏覽器控制檯中收到此錯誤:2:6133/Mails/_sendConfirmation加載資源失敗:服務器響應狀態爲404(未找到) –
然後找不到請求的資源。要求什麼? – David