我最近在尝试在剃须刀页面上写站点时遇到的问题-当我在类方法中使用变量时,它不会将数据保留在内部。在示例中:我有一个在创建页面时创建数据的方法。当我按下提交按钮时:该类中没有记住数据,因此它返回null。
我尝试使用数据绑定,临时数据,私有类。他们两个都没有保存数据供将来在一个类中使用。当前代码是:
`
namespace TestSite.Pages.Shared
{
public class Registration_2Model : PageModel
{
private readonly TestSite.Data.ApplicationDbContext _context;
public UserManager<IdentityUser> _user;
public string _ID { get; set; }
public string _Code { get; set; }
public bool _Validated;
public Registration_2Model(UserManager<IdentityUser> UserManager, ApplicationDbContext context)
{
_context = context;
_user = UserManager;
}
public IActionResult OnGet()
{
var CurrentUser = _context.Simple_User.FirstOrDefault(m => m.ID == Guid.Parse(_user.GetUserId(User)));
if (CurrentUser == null)
{
_ID = _user.GetUserId(User);
_Code = GenerateCode();
_Validated = false;
TempData["ID"] = _ID;
TempData["Code"] = _Code;
return Page();
} else { return Redirect("/Index"); }
}
[BindProperty]
public Simple_User Simple_User { get; set; }
public async Task<IActionResult> OnPostAsync()
{
Simple_User.ID = Guid.Parse((string)TempData["ID"]);
Simple_User.Code = (string)TempData["Code"];
Simple_User.Validated = false;
if (!ModelState.IsValid)
{
return Page();
}
_context.Simple_User.Add(Simple_User);
await _context.SaveChangesAsync();
return RedirectToPage("./Index");
}
private string GenerateCode()
{
Random _random = new Random();
return $"{_random.Next(1000, 9999).ToString()}-{DateTime.Now.Year}";
}
}
}
`
和HTML:
`
@{
ViewData["Title"] = "Second registration";
}
<h2>Second registration</h2>
<h4>One step left. After your initial registration, you must fill in some blanks, after which, our moderator will check and add you to our list.</h4>
<hr />
<div class="row">
<div class="col-md-4">
<form method="post">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="form-group">
<label class="control-label">ID</label>
<input class="form-control" type="text" placeholder="@Model._ID" readonly />
</div>
<div class="form-group">
<label asp-for="Simple_User.Name" class="control-label"></label>
<input asp-for="Simple_User.Name" class="form-control" />
<span asp-validation-for="Simple_User.Name" class="text-danger"></span>
<span asp-validation-for="Simple_User.Code" class="text-danger"></span>
</div>
<div class="form-group">
<label class="control-label">Code</label>
<input class="form-control" type="text" placeholder="@Model._Code" readonly />
</div>
<div class="form-group">
<label asp-for="Simple_User.Address" class="control-label"></label>
<input asp-for="Simple_User.Address" class="form-control" />
<span asp-validation-for="Simple_User.Address" class="text-danger"></span>
</div>
<div class="form-group">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</form>
</div>
</div>
<div>
<a asp-page="Index">Back to List</a>
</div>
@section Scripts {
@{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
}`
基本上,站点在无法访问的字段中显示一些值,并且在数据库中创建Simple_User时应使用它。但是到目前为止,我只有空值
答案 0 :(得分:1)
HTTP是无状态的™。如果要在执行一个请求期间为对象设置属性,并使这些值可用于后续请求,则需要实施自己的状态管理策略。
根据您的意愿,您有很多选择。如果安全性很重要,则应查看会话变量。同时,以下是所有可用选项:https://www.learnrazorpages.com/razor-pages/state-management
答案 1 :(得分:0)
尝试scaffolding the pages。如果您要查找的内容,则可以放弃“创建/详细信息/删除”页面,仅保留“编辑”页面。创建新页面时,可以从命令行或在Visual Studio中执行此操作。 CLI中的内容如下(有关更多详细信息,请参见here)
dotnet aspnet-codegenerator razorpage -m SimpleUser -dc ApplicationDbContext
此外,如果您希望在帖子中发送_ID或_Code属性,请向其中添加[BindProperty]
属性。有关模型绑定的更多信息,请参见here。