我需要在Kohana 3中的Validation助手中添加一些错误。
以下是我的开始:
// validate form
$post = Validate::factory($_POST)
// Trim all fields
->filter(TRUE, 'trim')
// Rules for name
->rule('first-name', 'not_empty')
->rule('last-name', 'not_empty')
// Rules for email address
->rule('email', 'not_empty')
->rule('email', 'email')
// Rules for address stuff
->rule('address', 'not_empty')
->rule('suburb', 'not_empty')
->rule('state', 'not_empty')
->rule('postcode', 'not_empty')
// Rules for misc
->rule('phone', 'not_empty')
->rule('company', 'not_empty')
->rule('abn', 'not_empty');
现在,如果遇到问题,我还会检查一些内容并添加错误
if ( ! in_array($post['state'], array_keys($states))) {
$post->error('state', 'not_found');
}
if ( $this->userModel->doesEmailExist($post['email'])) {
$post->error('email', 'already_exists');
}
我在这些上做了一些var_dump()
,他们 返回了应该添加错误的值!
但是,当我拨打$post->check()
时,它似乎只是验证了我在上面第一个代码块中添加的规则。
我的/application/messages/join.php
中也有匹配的值<?php defined('SYSPATH') or die('No direct script access.');
return array(
'not_empty' => ':field must not be empty.',
'matches' => ':field must be the same as :param1',
'regex' => ':field does not match the required format',
'exact_length' => ':field must be exactly :param1 characters long',
'min_length' => ':field must be at least :param1 characters long',
'max_length' => ':field must be less than :param1 characters long',
'in_array' => ':field must be one of the available options',
'digit' => ':field must be a digit',
'email' => array(
'email' => 'You must enter a valid email.',
'already_exists' => 'This email is already associated with an account'
),
'name' => 'You must enter your name.',
);
我在这里做错了吗?感谢
我只是在验证库中做了一些快速调试,即在每次调用_errors
方法后转储error
属性。
我能看到的是,我的错误正在被添加,但随后被覆盖(可能与我上面添加的规则相冲突)。这是正常的吗?
答案 0 :(得分:4)
作为替代方法(如果您不想破解核心),您可以使用回调验证器。然后您的代码将如下所示:
$post->callback('state', array($this, 'doesStateExist'));
$post->callback('email', array($this->userModel, 'doesEmailExist'));
答案 1 :(得分:0)
在进行自己的检查和添加错误之前,应始终运行$validate->check()
。 meze的答案会更好。
答案 2 :(得分:0)
我找到了另一种附加错误消息的方法:
$errors = array();
if (!$post->check()) {
$errors += $post->errors();
}
if (!isset($_POST['something'])) {
$errors['something'] = 'Please enter something';
}
if (empty($errors)) {
$orm->save();
return;
}
$tpl->error_fields($errors);