一、空模块和空操作
1、空操作 thinkphp3/index.php/City/tj 不存在 tj 城市
function _empty($name){
$this->show("$name 不存在 <a href='__APP__/Index/index'>返回首页</a>");
}
2.空模块
当用户直接输入 thinkphp/index.php/bj 而不是
thinkphp/index.php/Index/index/bj 那么可以创建一个空模块:
thinkphp3/Home/Lib/Action/EmptyAction.class.php
class EmptyAction extends Action{
function index(){
$city=M('City');
$arr=$city->select();
$this->assign('list',$arr);
$name=MODULE_NAME;
$this->display("City:$name");
}
}
二、前置操作和后置操作 可以用于进行登录时候进行判断
1、前置操作: _before_操作名
2、后置操作: _after_操作名
thinkphp 中使用 SESSION
$_SESSION['username']=$username;
thinkphp 中可以直接创建另一个模块方法
$oi=new IndexAction();
在登录后的页面 index() 方法之前使用 _before_index() 方法可以判断是否登录成功,用 SESSION 值传递,如果值没有定义或者为空,就返回 登录界面
if(!isset($_SESSION['username']) || $_SESSION['username']=''){
$this->redirect('Login/index');
}
function _after_index(){
$this_show('<script>alert("欢迎登录")</script>');
}