3

我对 cakephp 很陌生,我试图验证联系表格。我需要在模型中没有数据库表的情况下进行验证。但它不起作用。我使用的代码如下所示

以下是代码:ContactsController.php

<?php
class ContactsController extends AppController {


  var $uses='Contact';

  public function index() {
        // Placeholder for index. No actual action here, everything is submitted to the send function.
    }

    public function send() {
            $this->Contact->set($this->data);
            if($this->Contact->validates()) {
       echo "hiiii";
}
        }




}
----------------------------Model-----------------------
<?php
App::uses('AppModel', 'Model');

class ContactModel extends AppModel {

    var $name = 'Contact';
    var $useTable = false;

    var $validate = array(
        'name' => array(
            'rule' => 'notEmpty',
            'required' => true
        ),
        'email' => array(
            'rule' => 'email',
            'required' => true
        ),
        'message' => array(
            'rule' => 'notEmpty',
            'required' => true
        )
    );
}
-----------------------in view/Contacts/index.ctp-----------------------------
<?php
echo $this->Form->create('Contact', array('action' => 'Contacts/send'));
echo $this->Form->input('name');
echo $this->Form->input('email');
echo $this->Form->input('message',array('rows' => 3));
echo $this->Form->submit('Submit');
?>
4

3 回答 3

1

有一种方法可以在不使用模型的情况下进行验证,它也可以用于表单,至少在 CakePHP2 中是这样。

例如,我必须验证参数,我认为为每个需要参数的操作创建模型没有意义。

所以,我用了这个:

  1. 在控制器类声明之前

    App::uses('验证', '实用程序');

  2. 在带有 $code 参数的操作中

    function checkcode($code) { ... Validation::alphaNumeric($code); ... }

于 2012-11-13T13:29:14.247 回答
0

$this->Contact->save() 应该从关联模型调用验证。

public function send() {
        $this->Contact->set($this->data);
        if($this->Contact->save()) {
          $this->Session->setFlash(__('Contact saved!'));
        }
}
于 2013-01-04T22:36:02.177 回答
0

本文将为您提供所需的所有信息:http: //www.dereuromark.de/2011/12/15/tools-plugin-part-2-contact-form/

尤其是如何使用 _schema 来构建您的验证并以简单的方式形成。

于 2012-09-04T08:35:27.500 回答