只是想知道如何使用 YiiMongodbsuite 将字段设置为唯一?我检查了 YiiMongodbsuite 文档,找不到任何相关内容。
问问题
395 次
1 回答
2
索引(唯一的也是索引)应该在indexes
方法中定义,这里有一些来自 docs的示例:
class Client extends EMongoDocument
{
public function indexes()
{
return array(
// index name is not important, you may write whatever you want, just must be unique
'index1_name'=>array(
// key array holds list of fields for index
// you may define multiple keys for index and multikey indexes
// each key must have a sorting direction SORT_ASC or SORT_DESC
'key'=>array(
'field_name'=>EMongoCriteria::SORT_ASC
'field_name.embeded_field'=>EMongoCriteria::SORT_DESC
),
// unique, if indexed field must be unique, define a unique key
'unique'=>true,
),
);
}
// ....
}
还要检查UniqueValidator
mongo db 套件包以与 yii 验证器一起使用。
于 2013-03-20T10:29:07.983 回答