我创建了一个小型管理工具,并决定将其转换为 Razor 类库,以便我也可以在其他应用程序中使用它。我创建了 Razor 类库项目,并添加了我在主项目中拥有的所有 razor 页面,并尝试测试新项目。问题是框架由于某种原因无法识别 html 帮助程序,所以我创建了一个新的干净项目并尝试找出问题所在,结果是应用程序没有触发剃须刀页面和 asp 的 post 操作-for 属性没有正确使用属性值。我使用以下代码来测试 Razor 类库。
Page1.cshtml.cs
public class Page1Model : PageModel
{
[BindProperty]
public Input MyInput { get; set; }
public class Input
{
public string Name { get; set; }
}
public void OnGet()
{
}
public void OnPost()
{
}
}
Page1.cshtml
@page
@model WebApplication1.MyFeature.Pages.Page1Model
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Page1</title>
</head>
<body>
<form method="post">
<input asp-for="MyInput.Name" /><br />
<input type="submit" />
</form>
</body>
</html>
生成的html如下
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Page1</title>
</head>
<body>
<form method="post">
<input asp-for="MyInput.Name" /><br />
<input type="submit" />
</form>
</body>
</html>
正如您所见,MyInput.Name 的输入出现在我键入 Page1.cshtml 文件时。正确的输出应该如下:
<input type="text" id="MyInput_Name" name="MyInput.Name" value="" /><br />
我是否必须做一些事情才能使 html 助手工作并在发布请求发生时调用 OnPost 操作?