登录权限
Posted gwhm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了登录权限相关的知识,希望对你有一定的参考价值。
public function _initialize()
{
if (!Session::has(‘user‘, ‘think‘)) {
$this->error(‘非法登录‘, ‘Login/index‘);
}
$this->get_date();
}
public function get_date(){
$controller = Request::instance()->controller();
$action = Request::instance()->action();
$node = Session::get("access","think");
$flag = false;
foreach($node as $key=>$value){
if($value[‘controller_name‘] == $controller && $value[‘action_name‘] == $action){$flag = true;}if($action=="page"){$flag=true;//如果该用户中有权限则为true}}if($flag == false){$this->error("您没有权限");
if(data.msg){alert(‘您没有权限‘);return false;}
以上是关于登录权限的主要内容,如果未能解决你的问题,请参考以下文章
在SQL Server 里,登录名,用户,角色,权限,有什么联系?