我正在尝试创建一个简单的asp.net核心剃刀网站。
我有一个cshtml页面:
@page
@using RazorPages
@model IndexModel
@using (Html.BeginForm()) {
<label for="age">How old are you?</label>
<input type="text" asp-for="age">
<br/>
<label for="money">How much money do you have in your pocket?</label>
<input type="text" asp-for="money">
<br/>
<input type="submit" id="Submit">
}
和cs文件:
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using System;
using System.Threading.Tasks;
namespace RazorPages
{
public class IndexModel : PageModel
{
protected string money { get; set; }
protected string age { get; set; }
public IActionResult OnPost()
{
if (!ModelState.IsValid)
{
return Page();
}
return RedirectToPage("Index");
}
}
}
我希望能够将年龄和金钱传递给cs文件,然后将其传递回cshtml文件,以便在提交按钮发送get请求后在页面上显示它。我该如何实现呢?
更新: 以下代码不起作用。 index.cshtml.cs:
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using System;
using System.Threading.Tasks;
namespace RazorPages
{
public class IndexModel : PageModel
{
[BindProperty]
public decimal Money { get; set; }
[BindProperty]
public int Age { get; set; }
public IActionResult OnPost()
{
/* if (!ModelState.IsValid)
{
return Page();
}*/
this.Money = Money;
this.Age = Age;
System.IO.File.WriteAllText(@"C:\Users\Administrator\Desktop\murach\exercises\WriteText.txt",
this.Money.ToString());
return RedirectToPage("Index", new { age = this.Age, money = this.Money});
}
}
}
和index.cshtml:
@page
@using RazorPages
@model IndexModel
@using (Html.BeginForm()) {
<label for="Age">How old are you?</label>
<input type="text" asp-for="Age">
<br/>
<label for="Money">How much money do you have in your pocket?</label>
<input type="text" asp-for="Money">
<br/>
<input type="submit" id="Submit">
}
Money: @Model.Money
Age: @Model.Age
无论您输入什么内容,金钱和年龄都会在页面和文件中显示为0。
答案 0 :(得分:4)
在您的.cshtml文件中附加代码,该代码输出您通过POST填写的值。
<强> MyPage.cshtml 强>
@page
@model IndexModel
@using (Html.BeginForm())
{
<label for="Age">How old are you?</label>
<input type="text" asp-for="Age">
<br />
<label for="Money">How much money do you have in your pocket?</label>
<input type="text" asp-for="Money">
<br />
<input type="submit" id="Submit">
}
Money: @Model.Money
Age: @Model.Age
现在将[BindProperty]
添加到模型中的每个媒体资源,您要从OnPost()
更新
[BindProperty]
public int Age { get; set; }
[BindProperty]
public decimal Money { get; set; }
此外,正如Bart Calixto所指出的那样,必须公开这些属性才能从Page
访问。
OnPost()
方法非常简单,因为ASP.NET Core正在后台完成所有工作(感谢通过[BindProperty]
绑定)。
public IActionResult OnPost()
{
return Page();
}
现在,您可以点击Submit
,瞧,页面应如下所示:
顺便说一句:属性是用capital letter in the beginning写的。