在IndexController.class.php中,用new的方法调用 Model文件夹中建立的IndexModel.class.php中的 responseNews($postObj,$arr),不成功啊。是不是在哪里还要配置??TP3.2.3的Controller里调用默认指向本项目中的Model文件夹吗??
model中设置命名空间,然后再controller中use
model中的命名空间代码(以home模块为例): namespace Home\Model;
controller中use : use Home\Model\IndexModel;