1. afterFilter(), executed after all controller logic, including the rendering of the view2. beforeFilter(), executed before any controller action logic3. beforeRender(), executed after controller logic, but before the view is rendered afterFilter(),…
demo1. 模拟用字符串调用js 函数 function dataQuery() { var strFun = "testCallBack"; var strParam = "param"; //Create the function var fn = window[strFun]; //Call the function fn(strParam); } function testCallBack(str) { alert(str); } demo2. 模拟spr…
控制器(Controller)如果没有特定的表/模型关联的话,哪怕建测试都会出错,但你可以加一行到控制器(Controller)里就好了public $uses=array(); 或者 public $uses=false; <?php class AaaController extends AppController{ public $uses=FALSE; //public $uses=array(); 也可以 public function index(){ echo '无模型的Contr…
模型的query()函数有时是非常实用的,它可以在任何需要数据的地方执行SQL语句.但不是在什么地方调用query()方法都是恰当的.特别是在控制器中直接调用模型的query()方法 $this->MyModel->query('Here comes the SQL statement'); 在控制器中调用模型的query方法么有什么不可以,但它引入了数据库相关的代码,这违反了MVC模式的原则 一个更加干净的方案是把SQL语句移动到模型中,因此上面那段代码重构为: // 在模型中functio…