我想更改记录的 int 状态并根据该更改发送一封电子邮件,所有这些都无需重定向到让用户更改状态的新页面。
我试图将列模板按钮绑定到 JsonResult 操作的 href,但当然会重定向。
从外观上看,自定义命令是我最好的选择,但我希望尽可能多地使用现有代码,除了电子邮件之外,一旦我成功完成表格编辑,这部分就很容易了。
状态 = 待处理/批准/拒绝
未决是默认设置,因此在网格上只有批准和拒绝显示为状态更改选项。
查看代码:-
{
field: 'Application',
template: '<a style=\'width: 80px\' class=\'btn btn-success btn-block\' href=\' + sitePath + 'Placement/_Approve?Id=#=Id#\'>Approve</button>',
width: 50
},
{
template: '<a style=\'width: 80px\' class=\'btn btn-warning btn-block\' href=\' + sitePath + 'Placement/_Decline?Id=#=Id#\'>Approve</button>',
width: 50
}
控制器动作
[HttpPost]
public JsonResult _Approve(int Id)
{
SBApplication sba = _db.SBApplications.Find(Id);
sba.PendingApprovedDeclined = 1;
Placement pl = _db.Placements.Find(sba.PlacementId);
if (pl.ApprovedCount == pl.PlacementSlots)
{
Session.Add("redirectedapprovelimit", "yes");
return Json(View(new { @Id = sba.PlacementId }));
}
int i = pl.ApprovedCount;
i++;
pl.ApprovedCount = i;
if (pl.PlacementSlots == pl.ApprovedCount)
{
pl.OpenClosedStatus = false;
}
if (ModelState.IsValid)
{
_db.Entry(pl).State = EntityState.Modified;
_db.Entry(sba).State = EntityState.Modified;
_db.SaveChanges();
//// Insert email to student stating that there application is approved
}
return Json(View(new { @Id = sba.PlacementId }), JsonRequestBehavior.AllowGet);
}