thinkphp 前置和后置函数的作用_before和_after
手册解释:classCityActionextendsAction{//前置操作方法publicfunction_before_index(){echo'before<b...
手册解释:
class CityAction extends Action{
//前置操作方法
public function _before_index(){
echo 'before<br/>';
}
public function index(){
echo 'index<br/>';
}
//后置操作方法
public function _after_index(){
echo 'after<br/>';
}
}
既然这样,我为什么不直接把前后置函数里的内容都放进index()呢?不是更方便么 展开
class CityAction extends Action{
//前置操作方法
public function _before_index(){
echo 'before<br/>';
}
public function index(){
echo 'index<br/>';
}
//后置操作方法
public function _after_index(){
echo 'after<br/>';
}
}
既然这样,我为什么不直接把前后置函数里的内容都放进index()呢?不是更方便么 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询