Yii会根据错误,输出对应的错误提示信息,我们可以根据这些信息,反过来分析是什么样的错误。
1.
Error 404
Unable to resolve the request “xxx”.
这个表明是在controllers这个目录下面根本就没有对应的controller,像上面这个例子就是没有
xxxController.php
这个文件。
2.
Error 404
The system is unable to find the requested action “index”.
这个表明对应的controller已经找到,但是没有找到对应的action,像上面这个例子,就没有找到
actionIndex()
{
}
这个action.
3. 没有任何的输出
这种情况说明,对应的controller已经找到,并且对应的anction也有了,但是anction里面可能什么都没有,比如
class xxxController extends Controller
{
public actionIndex()
{}
}
未完待续。。。
版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.