我有一个非常基本的问题,但似乎找不到解决方法。
我的OnGet
方法中有一个初始化的对象。我希望客户端更新信息,然后再将其更新回数据库。 (对象的某些信息仅存储在数据库中,对用户不可见或不可编辑)
现在,我正尝试将完整的对象与客户端的输入一起传递给我。如果我尝试访问该对象,则所有属性均为null。相反,如果我尝试仅将单个属性作为字符串形式传递给表单,则可以正常工作。
这是我的代码:
public class UpdateLicenseModel : PageModel
{
private readonly license_backupContext _db;
public UpdateLicenseModel(license_backupContext db)
{
_db = db;
}
public IList<License> Licenses { get; set; }
[BindProperty]
public License SelectedLicense { get; set; }
[Auhtorize]
public void OnGet()
{
Licenses = _db.License.ToList();
SelectedLicense = Licenses.SingleOrDefault(s => s.Licenseid.ToString().Equals(LicenseString));
}
public IActionResult OnPost()
{
var license = SelectedLicense;
if (!ModelState.IsValid)
{
return Page();
}
_db.License.Update(license);
_db.SaveChanges();
return RedirectToPage("./Licenses");
}
}
在上面的代码中,OnPost中的许可证成员在字段中只有用户编辑内容的值,其他所有字段均为空(不应为空)
这是我的表格(简体):
<form method="post">
<div class="row">
<div class="col-6 form-group">
<label for="ID"><b>ID</b></label>
<input class="form-control input-sm" id="ID" value="@Model.SelectedLicense.ID" asp-for="SelectedLicense.ID" />
</div>
<div class="col-6 form-group">
<label for="Name"><b>Name</b></label>
<input class="form-control input-sm" id="Name" value="@Model.SelectedLicense.Name" asp-for="SelectedLicense.Name" />
</div>
</div>
<div class="row">
<div class="col">
<input type="submit" class="btn btn-success" value="Speichern" />
</div>
</div>
<input type="hidden" asp-for="SelectedLicense" />
</form>
答案 0 :(得分:2)
您不能以尝试的方式以HTML形式发布.NET对象。您只能发布其成员值,并让ModelBinding在服务器上为您构造对象。
通常,您将使用隐藏字段来存储所选对象的键值,然后使用该值来确定数据库中需要更新哪一行数据。
或者您可以将SelectedLicense
序列化为JSON,然后使用Base64或类似代码对其进行编码,然后将其存储在隐藏字段中。然后,您可以在服务器上对其进行解码和反序列化。但是,精明的用户将可以在浏览器中访问该值,并且可以自己对其进行解码。