在处理数据之前进行表单重定向

时间:2019-03-20 02:27:06

标签: asp.net-core model-view-controller ef-code-first

我正在使用EntityFramework(代码优先)模式制作ASP.Net Core MVC。我有一个剃须刀页面,其中包含所有表单输入的局部页面(已删除大部分div易于阅读)。这是myPartial,在提交时会在我的控制器中调用 AddClub 方法

    @using (Html.BeginForm("AddClub", "Club", FormMethod.Post, new { @class = "form-horizontal" }))
    {
        <div class="form-group">
            <label class="control-label col-sm-3">Club Sponser:</label>
            <div class="col-sm-4">
                @Html.TextBox("ClubSponser", null, new { @class = "form-control", id = "ClubSponser", placeholder = "Enter club Sponser" })
            </div>
        </div>
        <div class="btn-toolbar col-md-offset-7" role="group">
            <button type="submit" onsubmit="AddClub("ClubName","ClubOwner","ClubCoach","ClubSponser")" class="btn btn-primary">Add Club</button>
            <a href="@Url.Action("Index", "Home")" class="btn btn-danger">Cancel</a>
        </div>
    }

这是我的 Controller AddClub()

   [HttpPost]
    public ActionResult AddClub(string ClubName,string ClubOwner,string ClubCoach,string ClubSponser)
    {
        Club club = new Club()
        {
            Name = ClubName,
            Owner = ClubOwner,
            Coach=ClubCoach,
            Sponser=ClubSponser
        };
        clubRepo.AddClub(club);
        return RedirectToAction("Index","Club");
    }

这是我的实现接口的服务类

   public async Task AddClub(Club club)
    {
        _context.Clubs.Add(club);
        await _context.SaveChangesAsync();
    }

启动中,服务作为Singleton注入

 services.AddSingleton<IClubRepo, ClubService>();

1)我相信这种情况正在发生,因为在我的服务中,Class方法异步运行可能是原因(不确定)。我有这种预感,因为如果不进行重定向,它将完美地更新数据库

2)我不想再问一个问题,但是我只想问一下这是否是在ASP.Net core / MVC中提交表单的正确方法

1 个答案:

答案 0 :(得分:1)

您需要等待操作

[HttpPost]
public async Task<IActionResult> AddClub(string ClubName,string ClubOwner,string ClubCoach,string ClubSponser) {
    Club club = new Club() {
        Name = ClubName,
        Owner = ClubOwner,
        Coach=ClubCoach,
        Sponser=ClubSponser
    };
    await clubRepo.AddClub(club);
    return RedirectToAction("Index","Club");
}

为了使保存在重定向之前完成。