Home > Backend Development > PHP Tutorial > thinkphp的验证问题

thinkphp的验证问题

WBOY
Release: 2016-06-13 12:06:46
Original
800 people have browsed it

thinkphp的验证有关问题
在登陆和注册的时候都需要验证用户名,但是在登陆的时候需验证用户名是否为空,用户名是否存在;
但是在注册的时候时候也需要验证,这两个验证是一样的吗?SOS
------解决思路----------------------
不一样,你可以控制参数,来保证每个验证针对哪一个操作
http://doc.thinkphp.cn/manual/auto_validate.html
------解决思路----------------------
驗證的過程是一樣的。

但條件判斷有區別
login時,用戶名不能為空,且存在,才能通過

註冊時,用戶名不能為空,且不存在,才能通過(同一用戶名不能重複註冊)
------解决思路----------------------
两个验证的方法是一样的

------解决思路----------------------
一样,验证为空用js判断,验证是否存在需要后台查询数据库,然后再判断

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template