我已经在我的模型中将变量定义为数组,并且我已将该数组的规则定义为:
public $nameList;
public function rules()
{
array('nameList','type'=>'array','allowEmpty'=>false),
}
我试过这个。我遇到了问题?
答案 0 :(得分:1)
试试这个,它会起作用
public function rules()
{
array('nameList','type','type'=>'array','allowEmpty'=>false)
}