7

我有一个注册表单,用户可以在其中填写两个电子邮件地址(email1 和 email2)。营销的要求是它们必须是唯一的(如果我们有 10 个用户,那么唯一的,那么将有 10*2=20 个唯一的电子邮件地址)。

该系统已经建立在 cakephp 上,所以我想知道的是,是否有类似于 isUnique 功能(在一个领域中唯一)可以立即执行此操作?还是我注定要自己编写代码?提前致谢。

编辑:建立在理查德的例子上,这对我有用:

function checkUnique($data, $fields) {
    if (!is_array($fields)) {
        $fields = array($fields);
    }
    foreach($data as $key) {
        $checks = $key;
    }
    if (empty($checks)) {
      return true;  //allow null
    }
    foreach($fields as $key) {
        $tmp[$key] = $checks;
    }
    if (isset($this->data[$this->name][$this->primaryKey])) {
        $tmp[$this->primaryKey] = "<>".$this->data[$this->name][$this->primaryKey];
    }
    return $this->isUnique($tmp);
}
4

6 回答 6

13

我在 CakePHP Google Group 上发布了一个解决方案:

http://groups.google.com/group/cake-php/browse_frm/thread/b3a1e4ae3eeb6091/e168f54bac27c163?lnk=gst&q=checkUnique#e168f54bac27c163

将以下内容添加到您的 AppModel:

        /** 
         * checks is the field value is unqiue in the table 
         * note: we are overriding the default cakephp isUnique test as the 
original appears to be broken 
         * 
         * @param string $data Unused ($this->data is used instead) 
         * @param mnixed $fields field name (or array of field names) to 
validate 
         * @return boolean true if combination of fields is unique 
         */ 
        function checkUnique($data, $fields) { 
                if (!is_array($fields)) { 
                        $fields = array($fields); 
                } 
                foreach($fields as $key) { 
                        $tmp[$key] = $this->data[$this->name][$key]; 
                } 
                if (isset($this->data[$this->name][$this->primaryKey])) { 
                        $tmp[$this->primaryKey] = "<>".$this->data[$this->name][$this- 
>primaryKey]; 

                } 
                return $this->isUnique($tmp, false); 
        } 
} 

并用于您的模型验证:

        var $validate = array( 
                "name"=>array( 
                        "unique"=>array( 
                                "rule"=>array("checkUnique", array("name", "institution_id")), 
                                "message"=>"A contact with that name already exists for that 
institution" 
                        ) 
                ) 
       ); 
于 2010-03-17T16:55:47.150 回答
13

checkUnique可以写成isUnique.

class AppModel extends Model {
    public function checkUnique($ignoredData, $fields, $or = true) {
        return $this->isUnique($fields, $or);
    }
}

并用于您的模型验证:

public $validate = array(
    'name' => array(
        'unique' => array(
            'rule' => array('checkUnique', array('name', 'institution_id'), false), 
            'message' => 'A contact with that name already exists for that 
institution'
        )
    )
);
于 2013-03-31T16:57:33.113 回答
4

来自 cakePHP 2.0 文档:

您可以通过提供多个字段并将 $or 设置为 false 来验证一组字段是否唯一:

public $validate = array(
    'email' => array(
        'rule' => array('isUnique', array('email', 'username'), false),
        'message' => 'This username & email combination has already been used.'
    )
);

在跨多个字段制定唯一规则时,请确保将原始字段包含在字段列表中。

如果列出的字段未包含在模型数据中,则将其视为空值。您可以考虑根据需要标记列出的字段。

于 2015-09-14T15:41:03.903 回答
-1

是和不是。

是的,您必须自己编写代码,但在 CakePHP 验证组件中。

验证组件具有允许自定义验证规则的机制。本质上,您在 $validate 中放置了一个函数名称(就像您通常那样)。你必须定义函数;在这种情况下,它非常简单(只需执行您的双重 isUnique 要求)。

http://book.cakephp.org/2.0/en/models/data-validation.html#custom-validation-rules

于 2010-03-17T15:07:42.827 回答
-1

冒着因为提供非 CakePHP解决方案而被打脸的风险,让我介绍以下内容。

无论您需要多少列,都可以在数据库中创建唯一索引。

标准 SQL 语法是:

create unique index {IndexName} on {Table} ({Column}, {Column}, ...)

将“$this->Model->save()”命令放在“try/catch”块中。在“catch”块中,测试错误代码的异常。在 MySQL 中,唯一键违规是错误代码 23000,但您也应该为其他可能的错误做好准备。

它快速简单,不涉及计算数组括号。

无论如何,您应该始终将数据库访问代码放在“try/catch”块中。您的异常处理的一部分应该包括记录任何意外的错误消息。您不能期望 CakePHP 为您做所有事情

于 2015-04-17T15:08:51.953 回答
-2

据我记得,你必须使用beforeSave模型中的方法来执行这种强制。我要求一个对象至少有一个 N fks 集,我只能这样做。

编辑:试试这个线程,看看有没有什么能解决你的问题。

于 2010-03-17T12:21:30.853 回答