创建新条目时从表单最后一行填充数据

Populating data from last row in form when creating a new entry

我有一个表单可以为评论创建新的数据条目。创建全新的条目工作正常。但是,当我已经为我的实体创建了一个条目时,我想填充表单中最后一个条目的数据。

我已尝试修改 OnGet 操作以包含上一个条目的数据。我将 OnGet 代码从编辑视图复制到创建视图中。但是,如果我这样做,创建页面将不再显示。

我有以下型号:

    public class ProjectComment
    {
        public int Id { get; set; }

        public int? ProjectId { get; set; }
        public Project Project { get; set; }

        public int RAGStatusId { get; set; }
        public RAGStatus RAGStatus { get; set; }

        public string StatusComment { get; set; }
        public string EscalationComment { get; set; }
        public string GeneralComment { get; set; }
        public double? EOQ { get; set; }
        public DateTime LastUpdateDate { get; set; }
        public ProjectComment ()
        {
            this.LastUpdateDate = DateTime.UtcNow;
        }

创建表单Create.cshtml:

@page
@model SimpleProjectReporting.Pages.ClientDetails.CreateModel

@{
    ViewData["Title"] = "Create";
}

<h1>Create</h1>

<h4>ProjectComment</h4>
<hr />
<div class="row">
    <div class="col-md-4">
        <form method="post">
            <div asp-validation-summary="ModelOnly" class="text-danger"></div>
            <div class="form-group">
                <label asp-for="ProjectComment.ProjectId" class="control-label"></label>
                <select asp-for="ProjectComment.ProjectId" class="form-control" asp-items="ViewBag.ProjectId"><option value="" default="" selected="">-- Select --</option></select>
            </div>
            <div class="form-group">
                <label asp-for="ProjectComment.RAGStatusId" class="control-label"></label>
                <select asp-for="ProjectComment.RAGStatusId" class="form-control" asp-items="ViewBag.RAGStatusId"><option value="" default="" selected="">-- Select --</option></select>
            </div>
            <div class="form-group">
                <label asp-for="ProjectComment.StatusComment" class="control-label"></label>
                <input asp-for="ProjectComment.StatusComment" class="form-control" />
                <span asp-validation-for="ProjectComment.StatusComment" class="text-danger"></span>
            </div>
            <div class="form-group">
                <label asp-for="ProjectComment.EOQ" class="control-label"></label>
                <input asp-for="ProjectComment.EOQ" class="form-control" />
                <span asp-validation-for="ProjectComment.EOQ" class="text-danger"></span>
            </div>
            <div class="form-group">
                <input type="submit" value="Create" class="btn btn-primary" />
            </div>
        </form>
    </div>
</div>

原Create.cshtml.cs动作:

        [BindProperty]
        public ProjectComment ProjectComment { get; set; }

        public IActionResult OnGet()
        {
            ViewData["ProjectId"] = new SelectList(_context.Project.Where(a => a.IsArchived == false), "Id", "ProjectName");
            ViewData["RAGStatusId"] = new SelectList(_context.RAGStatus.Where(a => a.IsActive == true), "Id", "RAGStatusName");
            return Page();
        }

        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task<IActionResult> OnPostAsync()
        {
            if (!ModelState.IsValid)
            {
                return Page();
            }

            _context.ProjectComment.Add(ProjectComment);
            await _context.SaveChangesAsync();

            return RedirectToPage("./Index");
        }

修改后的Create.cshtml.cs OnGet动作:

        public async Task<IActionResult> OnGetAsync(int? id)
        {
            if (id == null)
            {
                return NotFound();
            }

            ProjectComment = await _context.ProjectComment
                .Include(p => p.Project)
                .Include(p => p.RAGStatus).FirstOrDefaultAsync(m => m.Id == id);

            if (ProjectComment == null)
            {
                return NotFound();
            }

按照我的方式修改操作时,页面不再显示(404 错误)。 我想用数据库中最后一个条目的数据填充创建表单。如果没有评论,创建页面只会填充项目名称。

我猜你没有将 "id" 参数发送到你的 post 操作。

那么你能否尝试在你的 form 标签下添加这一行:

<form method="post">
<input type="hidden" id="ProjectComment.Id" name="id" value="ProjectComment.Id" />

您正试图达到 ProjectComment table 的最后一条记录。 查找数据的最后一条记录的方法不止一种 table。但是让我们保持简单。

您有一个基于整数的标识列,它是自动递增。所以你可以简单地使用下面的方法来获取你的 table.

的最后创建的数据

在您的 OnGetAsync() 方法中:

//maxId will be the maximum value of "Id" columns. Which means that the maximum value is the last recorded value.
int maxId = _context.ProjectComment.Max(i => i.Id);

//And this line will bring you the last recorded "ProjectComment" object.
var projectComment = _context.ProjectComment.Find(maxId); 

//You can assign it to your above 'ProjectComment' property if you want to.. 
ProjectComment = projectComment 

现在,既然您已在数据库中找到最后记录的数据,就可以使用该对象了。

首先感谢 Burak 提供了上述解决方案,当你想在 table 中显示最后一行时,它可以工作。这帮助我通过使用相同的方法并根据记录的 Id 查找记录来解决我的问题。 我已将 Create.cshtml.cs 文件中的代码修改如下:

        public async Task<IActionResult> OnGetAsync(int? id, int projectid)
        {
            //This will find the "ProjectComment" object.
            var projectComment = _context.ProjectComment.Find(id);

            //This will display the 'ProjectComment' on the page 
            ProjectComment = projectComment;
            if (id == null)
            {
                ProjectComment = projectComment; 

                ViewData["ProjectId"] = new SelectList(_context.Project, "Id", "ProjectName", projectid);


                return Page();
            }
            ViewData["ProjectId"] = new SelectList(_context.Project, "Id", "ProjectName");
            return Page();
        }

我正在使用 int projectid 在尚未创建评论时填充项目的下拉菜单。