Cakephp 创建无模型的Controller
2020-11-15 18:54
标签:com http blog style class div img code java c log 控制器(Controller)如果没有特定的表/模型关联的话,哪怕建测试都会出错,但你可以加一行到控制器(Controller)里就好了 2.4以上版本的好像默认可以支持了 Cakephp 创建无模型的Controller,搜素材,soscw.com Cakephp 创建无模型的Controller 标签:com http blog style class div img code java c log 原文地址:http://www.cnblogs.com/jason-gong/p/3699065.html
public
$uses=array(); 或者 public $uses=false;php
class AaaController extends AppController{
public $uses=FALSE;
//public $uses=array(); 也可以
public function index(){
echo ‘无模型的Controller‘;
}
}
?>
上一篇:.NET源码保护控件VMProtect免费下载及使用教程脱壳等功能详解
下一篇:stream opencv mat (webcam)frame throught tcp by boost asio
文章标题:Cakephp 创建无模型的Controller
文章链接:http://soscw.com/index.php/essay/21497.html