开发者

How to use the validation rules on both client-side and server-side?

I'm using jQuery validation system for client-side validation. The backend works with django. jQuery use an interesting set开发者_如何转开发 of rules in JSON format.

Does exists something to use the same rules on django side or I need to code it myself?


No, no such thing exists.

Yes, you need to code it yourself.

However, I imagine you could possibly create widgets which are able to deliver generic validation js routines based on the modelFields. Such as "This should be chars not more than max_length". However they could not trivially generate client-side code to validate any custom validation written in python, nor even something like "This must be the username of an existing user". But if you take this trouble to build widgets which do basic validation based on the modelFields please contribute them to open source :-D


This article describes some level of integration: http://streamhacker.com/2010/03/08/jquery-validation-django-forms/

It doesn't look like it actually generates the clientside metadata based on the serverside metadata, but at least puts all rules in one place. May be a good starting point for generating those rules based on the existing Django rules.


I haven't used it myself, but there is the django-ajax-forms project.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜