我想检查“从”日期字段与“到”日期字段是否不同。所以我有这个文档HTML::FormFu::Constraint::Callback:
配置.yml:
type: Text
name: to
label: To
constraints:
- type: DateTime
parser:
strptime: '%Y-%m-%d %H:%M:%S'
- type: Callback
callback: "check_date"
my_controller.pm:
sub check_date {
my ( $value, $params ) = @_;
return 1; //juste fel testing
}
sub index : Path :Args(0) :FormConfig('config.yml'){
..........
my $field = $form->get_element({type => 'Text', 'name' => 'to'});
$field->constraint({
type => 'Callback',
callback => \&check_date,
});
...........
}
但它没有检测到函数“check_date”。