Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^3: Problems with not so trivial data validation using Data::FormValidator

by roboticus (Chancellor)
on Feb 01, 2013 at 02:05 UTC ( [id://1016421]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Problems with not so trivial data validation using Data::FormValidator
in thread Problems with not so trivial data validation using Data::FormValidator

ted.byers:

Have you looked at the tests for the module? You can use the test "t/multiple_constraints.t" as an example and build on it to find out how to use multiple constraints.

...roboticus

When your only tool is a hammer, all problems look like your thumb.

Replies are listed 'Best First'.
Re^4: Problems with not so trivial data validation using Data::FormValidator
by ted.byers (Monk) on Feb 01, 2013 at 02:49 UTC

    I had not, but now I have. Here is the example there:

    my %data = ( multiple => 'to fail', #multiple => [qw{this multi-value input will fail on the constraint +below}], single => 'to pass', ); my %profile = ( required => [qw/ multiple single /], constraints => { multiple => [ { name => 'constraint_1', constraint => qr/\w/ }, # pass { name => 'constraint_2', constraint => qr/\d/ }, # force fail + ], }, ); my $results = Data::FormValidator->check(\%data, \%profile);

    The only difference, apart from using a regular expression, I see there is that they have the field name where the example from the documentation, and I, have a dummy nme, and where I, and the documentation, have the filed name as the first value in the array, the test does not. But, When I modify my code to resemble the code in that test, I still get the same error.

    This is so frustrating.

    Thanks

    Ted

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1016421]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-03-29 05:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found