我的代码如下:
public class Lib
{
public int ID { get; set; }
[Required]
[PageRemote(PageHandler = "IsKeyExists", HttpMethod = "Get")]
public string Key { get; set; }
}
在“创建”页面模型中:
public async Task<IActionResult> OnGetIsKeyExistsAsync(string key)
{
var query = _context.Lib.Any(l => l.Key == key);
if (query)
{
return new JsonResult($"Key {key} exists");
}
return new JsonResult(true);
}
当我调试代码时,OnGetIsKeyExistsAsync总是获取值为null的参数键。
我发现浏览器中的请求是:
https://localhost:44377/Libs/Create?handler=IsKeyExists&Lib.Key=xx
我用PostMan进行测试,然后用Key修改参数名称,一切正常。
https://localhost:44377/Libs/Create?handler=IsKeyExists&Key=xx
我不想修改页面模型以绑定另一个字符串值,以及如何使其与Lib.Key一起使用?
也许这个问题与远程页面无关,而仅与剃刀页面或asp.net核心有关。
答案 0 :(得分:0)
URL生成参数的名称取决于您的输入名称。
您的网址将生成类似https://localhost:44377/Libs/Create?handler=IsKeyExists&Lib.Key=xx
的网址的原因是asp-for
将默认生成名称:
<input asp-for="Lib.Key" />
生成html:
<input type="text" id="Lib_Key" name="Lib.Key" data-val="true" data-val-remote="'Key' is invalid." data-val-remote-additionalfields="*.Key" data-val-remote-type="Get" data-val-remote-url="/?handler=IsKeyExists" data-val-required="The Key field is required." value="">
如果您想使用Lib.Key
,则您在处理程序中收到的参数应该是如下所示的对象:
public async Task<IActionResult> OnGetIsKeyExistsAsync(Lib Lib)
如果您不想更改处理程序,则需要指定如下名称:
<input asp-for="Lib.Key" name="key" />