在不丢失原始数据的情况下重定向回上一页
Redirect back to Previous Page without losing original data
当我在控制器中执行自定义错误处理时,我无法通过重定向同一页面来保留原始数据。
假设我有一个网页调用Create.cshtml。
在那个创建网页中,我有一些表单控件要求用户输入 class 代码,但 class 代码不能重复。
假设用户输入了系统中存在的 class 代码,我的系统应该重定向回 Create.cshtml 并传递错误消息(例如 ViewBag.error = "Class Code duplicated ") 并模拟地。
但是我当前的实现在重定向后不会恢复原来的 content/data。
Class控制器:
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Create([Bind("ID,ClassCode,ClassName,DateCreation,DegreeID,CourseChapterID")] Class @class)
{
if (ModelState.IsValid)
{
Class cls = await _context.Class.SingleOrDefaultAsync(c => c.ClassCode == @class.ClassCode);
if (cls != null)
{
TempData["error"] = "This class code has been existed in the system";
ModelState.AddModelError("error", "This class code has been existed in the system");
return RedirectToAction(nameof(Create),@class);
}
_context.Add(@class);
await _context.SaveChangesAsync();
return RedirectToAction(nameof(Index));
}
return View(@class);
}
Create.cshtml
<form asp-action="Create">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="form-group">
<label asp-for="ClassCode" class="control-label"></label>
<input asp-for="ClassCode" class="form-control" />
<span asp-validation-for="ClassCode" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="ClassName" class="control-label"></label>
<input asp-for="ClassName" class="form-control" />
<span asp-validation-for="ClassName" class="text-danger"></span>
</div>
@if (@TempData["error"] != null)
{
<div class="form-group">
<label class="control-label">@TempData["error"]</label>
</div>
}
<div class="form-group">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</form>
系统环境:.NET CoreEntity Framework
当你使用重定向时,你应该使用 TempData 而不是 ViewBag。
TempData["error"] = "This class code has been existed in the system";
return RedirectToAction(nameof(Create));
你被重定向到创建get
方法,如果它没有return模型,数据会丢失,我想你可以直接return View()
这里。
if (cls != null)
{
TempData["error"] = "This class code has been existed in the system";
ModelState.AddModelError("error", "This class code has been existed in the system");
return View(nameof(Create), @class);
}
当我在控制器中执行自定义错误处理时,我无法通过重定向同一页面来保留原始数据。 假设我有一个网页调用Create.cshtml。 在那个创建网页中,我有一些表单控件要求用户输入 class 代码,但 class 代码不能重复。 假设用户输入了系统中存在的 class 代码,我的系统应该重定向回 Create.cshtml 并传递错误消息(例如 ViewBag.error = "Class Code duplicated ") 并模拟地。 但是我当前的实现在重定向后不会恢复原来的 content/data。
Class控制器:
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Create([Bind("ID,ClassCode,ClassName,DateCreation,DegreeID,CourseChapterID")] Class @class)
{
if (ModelState.IsValid)
{
Class cls = await _context.Class.SingleOrDefaultAsync(c => c.ClassCode == @class.ClassCode);
if (cls != null)
{
TempData["error"] = "This class code has been existed in the system";
ModelState.AddModelError("error", "This class code has been existed in the system");
return RedirectToAction(nameof(Create),@class);
}
_context.Add(@class);
await _context.SaveChangesAsync();
return RedirectToAction(nameof(Index));
}
return View(@class);
}
Create.cshtml
<form asp-action="Create">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="form-group">
<label asp-for="ClassCode" class="control-label"></label>
<input asp-for="ClassCode" class="form-control" />
<span asp-validation-for="ClassCode" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="ClassName" class="control-label"></label>
<input asp-for="ClassName" class="form-control" />
<span asp-validation-for="ClassName" class="text-danger"></span>
</div>
@if (@TempData["error"] != null)
{
<div class="form-group">
<label class="control-label">@TempData["error"]</label>
</div>
}
<div class="form-group">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</form>
系统环境:.NET CoreEntity Framework
当你使用重定向时,你应该使用 TempData 而不是 ViewBag。
TempData["error"] = "This class code has been existed in the system";
return RedirectToAction(nameof(Create));
你被重定向到创建get
方法,如果它没有return模型,数据会丢失,我想你可以直接return View()
这里。
if (cls != null)
{
TempData["error"] = "This class code has been existed in the system";
ModelState.AddModelError("error", "This class code has been existed in the system");
return View(nameof(Create), @class);
}