We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
url
?
?handler=Unique?IP=192.168.1.2
请求 url 会有两个 ‘?’
The text was updated successfully, but these errors were encountered:
Translation: The request url will have two ‘?’
Seems legit, if url already has a ? we should use a & here to concatenate payload:
&
payload
aspnet-client-validation/src/index.ts
Line 390 in c616741
Sorry, something went wrong.
asp.net core razor pages
[PageRemote(ErrorMessage ="已存在", PageHandler= "AccountUnique")] PageHandler 会自动生成 xxxxx?handler=AccountUnique
request.open('get', url + '?' + payload);
就会变成
xxxxx?handler=AccountUnique?payload
请求页面就会不存在,
如果用 [PageRemote(ErrorMessage ="已存在", PageName = "AccountUnique")] 是正常的 ,
No branches or pull requests
请求 url 会有两个 ‘?’
The text was updated successfully, but these errors were encountered: