欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

关于yii框架中的actions

程序员文章站 2022-05-08 14:59:54
...
public function actionCaptcha(){		return array(				'class'=>'system.web.widgets.captcha.CCaptchaAction',				'height'=>20,				'width'=>20,				'maxLength'=>4,				'minLength'=>4			);	}

	public function actions(){		return array(			'captcha'=>array(				'class'=>'system.web.widgets.captcha.CCaptchaAction',				'height'=>25,				'width'=>80,				'maxLength'=>4,				'minLength'=>4			),		);	}

我觉得都是调用验证码类啊。为什么第一个不能用,第2个能用呢


回复讨论(解决方案)

显然是因为第一个少了一层
格式不对了

少了一?,要按格式才可以的。

和层无关。是关于actions的问题好不好

怎么无关?
第二段不是有键 captcha (验证码)吗?
而第一段有谁能知道返回的数据的归属呢?