ASP.NET MVC 3 中的 DRY 远程验证

发布于 2024-11-03 05:10:20 字数 389 浏览 4 评论 0原文

我读过 David Hayden 关于 MVC 3 远程验证。

不过,这里介绍了您应该如何启用远程 (javascript) 验证。如果用户禁用了 javascript,即使数据无效,帖子仍然会发布。因此,应该进行服务器端验证。

我们如何才能使此检查尽可能 DRY(不要重复自己)?当然,在后操作中包含与远程验证操作中相同的检查代码(或只是相同的调用)可以工作,但我想知道是否可以使用单行或更优雅的东西。

完全可以接受的答案包括“不,这是不可能的”。 :)

I've read David Hayden's great post on MVC 3 Remote validation.

However there is presented what you should do to enable remote (javascript) validation. If the user has javascript disabled the post would still be made even if data is not valid. Therefore a server-side validation should occur.

How could we make this check as DRY (Don't Repeat Yourself) as possible? Of course, including the same check code in the post action as in the remote validation action (or just the same call) can work but I am wondering if a one-liner or something more elegant is available.

Perfectly acceptable answers include "no, it can't be done". :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

绅士风度i 2024-11-10 05:10:20

请参阅我的 MSDN 文章 如何:在 ASP 中实现远程验证。 NET MVC
当 JavaScript 被禁用时,我使用 HttpPost Create 方法中的远程客户端验证代码来测试服务器端。

[HttpPost]
    public ActionResult Create(CreateUserModel model) {

        // Verify user name for clients who have JavaScript disabled
        if (_repository.UserExists(model.UserName)) {
            ModelState.AddModelError("UserName", ValidationController.GetAltName(model.UserName, _repository));
            return View("Create", model);
        }

See my MSDN article How to: Implement Remote Validation in ASP.NET MVC
I use the remote client validation code in the HttpPost Create method to test server side when JavaScript is disabled.

[HttpPost]
    public ActionResult Create(CreateUserModel model) {

        // Verify user name for clients who have JavaScript disabled
        if (_repository.UserExists(model.UserName)) {
            ModelState.AddModelError("UserName", ValidationController.GetAltName(model.UserName, _repository));
            return View("Create", model);
        }
昇り龍 2024-11-10 05:10:20

它“可以”完成..但是您需要编写自己的自定义属性,该属性基本上为客户端发出并在服务器端进行验证。对我来说,我只是将验证代码提取到方法中并检查服务器。
最近也出现了类似的情况:

在 ASP.NET MVC 3 中使用非侵入式验证时防止表单提交

我想知道是否不能从远程继承属性并添加自己的服务器端代码它们。嗯..也许我得试试这个。

如果这里有人说他们已经这样做了,我会很高兴:)

It 'can' be done.. but you would need to write your own custom attribute that basically emits for client side and is validated server side. For me I just extract the validation code into a method and check on the server.
Something similar came up recently as well:

Prevent form from submitting when using unobtrusive validation in ASP.NET MVC 3

I wonder if one couldnt inherit from the remote attribute and add their own server side code them. hmm.. maybe I'll have to try this.

I would be happy though if someone here said they already did this : )

ま昔日黯然 2024-11-10 05:10:20

我已经完成了这个,这是一个有点长的解决方案,所以它可以在我的博客上找到:

http://www.metaltheater.com/tech/technical/fixing-the-remote-validation-attribute/

我必须创建 RemoteAttribute< 的新子类/code> 类,通过继承 DefaultModelBinder 创建我自己的自定义模型绑定器,然后使用反射来调用控制器上的验证器。

I have done this, it's a bit of a long solution, so it's all available on my blog here:

http://www.metaltheater.com/tech/technical/fixing-the-remote-validation-attribute/

I had to create a new subclass of the RemoteAttribute class, create my own custom model binder by inheriting from DefaultModelBinder, and then use reflection to call the validator on the controller.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文