简介:我是一名试图学习ASP.NET核心MVC的.NET学生。所以请理解。我在网上搜索了我的问题的答案,但还没找到适用于我的解决方案。
我的问题:
我正在开发一个博客。我创建了一个包含标题,内容,类别类型和帖子日期的博文。现在我希望能够编辑帖子。但是当我按下“保存cahnges”按钮时,网页会刷新,我修改的内容也会消失。
我的行动方法:
public IActionResult Edit(int PostID, [Bind("Header, Content, category")] Post post)
{
if(PostID != post.PostID)
{
return NotFound();
}
if (ModelState.IsValid)
{
db.Update(post);
db.SaveChangesAsync();
return RedirectToAction("index");
}
return View(post);
}
我的观点:
@model IEnumerable<Blogg.Model.Post>
@using Blogg.Model
</head>
<body>
<h1>Skriv ett inlägg</h1>
@foreach (var item1 in Model)
{
<div id="post-@item1.PostID, @item1.category.CategoryID">
<form name="CreatePostForm" method="post" asp-controller="Home" asp-action="Edit">
<div class="row">
<div class="form_settings">
<p><input id="HeaderStyle" value="@item1.Header" type="text" name="Header" placeholder="Rubrik" required /></p>
<p><textarea id="inputTextArea" class="textarea" rows="5" cols="50" name="Content" placeholder="innehåll" required>@item1.Content</textarea></p>
<div class="@*radioPosition*@">
<input type="radio" name="category" value="KIDS" checked /><label>Kids</label>
<input type="radio" name="category" value="TECH" /><label>Tech</label>
<input type="radio" name="category" value="GOSSIP" /><label>Gossip</label>
</div>
<p style="padding-top: 15px"><span> </span><input asp-route-PostID="@item1.PostID" id="submitPostButton" class="submit" type="submit" value="Save Changes" @*onclick="return validateForm()" *@ /></p>
</div>
</div>
</form>
</div>
}
</body>
</html>
我尝试过不同的指南,但没有运气。使用Bind()时,我是否有错误的approche。我错过了什么吗?
告诉我你是否想从我的代码中看到任何其他内容。感谢我得到的所有帮助!
答案 0 :(得分:0)
用Tage Helpers解决它...