1

在我的引导程序上,我没有一个类,它是一个简单的 php 文件:

我在那里添加了:

$loader = Zend_Loader_Autoloader::getInstance ();
$loader->setFallbackAutoloader ( true );
$loader->suppressNotFoundWarnings ( false );

//resource Loader
$resourceLoader = new Zend_Loader_Autoloader_Resource(array(
                'basePath' => APPLICATION_PATH,
                'namespace' => '',
            ));

$resourceLoader->addResourceType('validate', 'validators/', 'My_Validate_');

$loader->pushAutoloader($resourceLoader);

然后,在应用程序/验证器中,我有:

class My_Validate_Spam extends Zend_Validate_Abstract {

    const SPAM = 'spam';  

    protected $_messageTemplates = array(  
        self::SPAM => "Spammer"  
    );  

    public function isValid($value, $context=null)  
    {  

        $value = (string)$value;  
        $this->_setValue($value);  

        if(is_string($value) and $value == ''){  
            return true;  
        }  

        $this->_error(self::SPAM);  
        return false;  

    }  
}

在我的表单构造函数中,我有:

$this->addElement(  
                'text',  
                'honeypot',  
                array(  
                    'label' => 'Honeypot',  
                    'required' => false,  
                    'class' => 'honeypot',  
                    'decorators' => array('ViewHelper'),  
                    'validators' => array(  
                        array(  
                            'validator' => 'Spam'  
                        )  
                    )  
                )  
            );  

最后在我看来,我有:

<dt><label for="honeypot">Honeypot Test:</label></dt>
<dd><?php echo $this->form->honeypot;?></dd>

尽管如此,我还是通过填写或不填写该文本字段来接收我的表单数据。我在这里想念什么?

提前非常感谢。

4

2 回答 2

1

那是预期的行为。$honeypot 是一个表单元素。现在,假设您有一个 $hp_form 表单,其中 $honeypot 是分配的元素之一。

现在,在您的控制器中只需使用类似的东西:

 if ($hp_form->isValid($this->getRequest()->getPost())) {
     // do something meaningful with your data here
 } 

如果您是第一次显示表单或者用户是否提交了表单,您可能还想检查:

 if ($this->getRequest()->isPost() && 
        false !== $this->getRequest()->getPost('submit_button', false)) {
     if ($hp_form->isValid($this->getRequest()->getPost())) {
         // do something meaningful with your data here
     } 
}

...假设您的提交按钮的 ID 为“submit_button”。

希望这可以帮助

再见,克里斯蒂安

于 2011-06-22T17:12:25.360 回答
0

代替 :

if (is_string($value) and $value == ''){  
   return true;  
}

经过 :

if (strlen($value) > 0)
{
   return true;
}
于 2011-06-22T17:12:35.137 回答