在user.php中增加如下代码用于打开login.html登录页面的获取函数login()函数,注意:这里新引入了think\Request,内置Request类,获取传值。同时也要编写用于验证登录数据的checklogin()函数。代码如下:
注意:1.代码$this->redirect("Index/user/loginsuccess");的含义为:用户名和密码都输入正确,页面跳转的地址为http://localhost/public/index.php/Index/user/loginsuccess;
2.代码$this->error("登陆失败",'Index/user/login',1);的含义为:用户名或密码输入错误,页面跳转的地址为http://localhost/public/index.php/Index/user/login;
在user文件夹下新增login.html ,目录如下:
login.html网页中的内容,代码入下:
在浏览器中输入地址:http://localhost/public/index.php/index/user/login;出现如下图界面: