Back

really simple validation: RSV Error: the field " xxx" doesn't exist!

发布时间: 2010-09-15 11:18:00

really simple validationhttp://www.benjaminkeen.com/software/rsv/prototype/demo.php is very useful and easy to use.

However there is a very common problem for newbie:

RSV Error: the field " xxx" doesn't exist! Please check your form and settings.

the root cause is because of the "space" key.

root cause:
"required, field_name,Please input xxx"
should be written as:
"required,field_name,Please input xxx"

see the difference? the 2nd one doesn't have the space key.

Back