我项目的结构:
Admin独立分组:
Action/目录下:CommonAction.class.php,TeamAction.class.php
Home独立分组:
Actioni/目录下:ba
seAction.class.php,IndexAction.class.php
其中:Team继承本分组的Common;Index继承本分组的base
问题:
我在Team里调用Index里的方法时,报找不到base的错误;
调用方法:R("Home/Index/index");
通过Trance信息查看,是先加载了CommonAction,然后又加载了IndexAction