数据库保存字段是md5(密码),表单接收处理的密码是md5(密码+后缀),这两个判断返回的逻辑值是true吗?为什么我昨晚试了,返回账户密码不正确,但是ajax返回值是ok,如果全部乱输入,则ajax返回的是null。如果密码不匹配为什么ajax返回ok?如果匹配为什么返回密码不正确?问题出在哪里?
1.IndexController.class.php:
<code><?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function index(){ $this->display(); } public function checkUserName(){ if(!IS_AJAX){ $data=array('errMsg' => '非法访问方式'); } $userName=I('username','','htmlspecialchars'); $userPass=I('userpass','','htmlspecialchars'); $userInfo=D("Stuser")->getUserInfo($userName); if($userInfo['userpass']!=handleMd5Pass($userPass)){ //echo $userInfo['userpass']."<br>"; //echo handleMd5Pass($userPass); echo "用户名或密码不正确"; //var_dump(handleMd5Pass($userPass)); } if($userInfo){ //$userInfo->where(array('id' => $userInfo['id']))->save($errMsg); session('userId',$userInfo['id']); $data=array( 'info' => 'ok', 'callback' => U('/stfjzd-13/index.php/Home/Index/index') ); } $this->ajaxReturn($data); } } </code>
2.StuserModel.class.php
<code><?php namespace Home\Model; use Think\Model; //用户表模型 class StuserModel extends Model{ private $DB=""; public function __construct(){ //构造函数创建模型 $this->DB=M("Stuser"); } //数据库中检索用户数据,find()检索一条->Index public function getUserInfo($userName){ //$res=$this->DB->field('username','userpass')->where('username="'.$userName.'"')->find(); $userInfo=$this->DB->where('username="'.$userName.'"')->find(); echo $this->DB->getLastSql(); return $userInfo; } } ?> </code>
3.Login.js
<code>$('.search_sub').click(function(event){ event.preventDefault(); var userName=$("#username").val(); var userPass=$("#userpass").val(); if(userPass=="" || userName==""){ alert("登陆名称与密码不能为空"); $("#username").focus(); return false; }else{ var url="/stfjzd-13/index.php/Home/Index/checkUserName"; //var url="{U('/stfjzd-13/index.php/Home/Index/checkUserName')}"; $.post(url,{username:userName,userpass:userPass},function(msg){ if(msg.errMsg=="ok"){ window.location.href=msg.callback; }else{ alert(msg.errMsg); } },"JSON") } }) </code>
回复内容:
数据库保存字段是md5(密码),表单接收处理的密码是md5(密码+后缀),这两个判断返回的逻辑值是true吗?为什么我昨晚试了,返回账户密码不正确,但是ajax返回值是ok,如果全部乱输入,则ajax返回的是null。如果密码不匹配为什么ajax返回ok?如果匹配为什么返回密码不正确?问题出在哪里?
1.IndexController.class.php:
<code><?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function index(){ $this->display(); } public function checkUserName(){ if(!IS_AJAX){ $data=array('errMsg' => '非法访问方式'); } $userName=I('username','','htmlspecialchars'); $userPass=I('userpass','','htmlspecialchars'); $userInfo=D("Stuser")->getUserInfo($userName); if($userInfo['userpass']!=handleMd5Pass($userPass)){ //echo $userInfo['userpass']."<br>"; //echo handleMd5Pass($userPass); echo "用户名或密码不正确"; //var_dump(handleMd5Pass($userPass)); } if($userInfo){ //$userInfo->where(array('id' => $userInfo['id']))->save($errMsg); session('userId',$userInfo['id']); $data=array( 'info' => 'ok', 'callback' => U('/stfjzd-13/index.php/Home/Index/index') ); } $this->ajaxReturn($data); } } </code>
2.StuserModel.class.php
<code><?php namespace Home\Model; use Think\Model; //用户表模型 class StuserModel extends Model{ private $DB=""; public function __construct(){ //构造函数创建模型 $this->DB=M("Stuser"); } //数据库中检索用户数据,find()检索一条->Index public function getUserInfo($userName){ //$res=$this->DB->field('username','userpass')->where('username="'.$userName.'"')->find(); $userInfo=$this->DB->where('username="'.$userName.'"')->find(); echo $this->DB->getLastSql(); return $userInfo; } } ?> </code>
3.Login.js
<code>$('.search_sub').click(function(event){ event.preventDefault(); var userName=$("#username").val(); var userPass=$("#userpass").val(); if(userPass=="" || userName==""){ alert("登陆名称与密码不能为空"); $("#username").focus(); return false; }else{ var url="/stfjzd-13/index.php/Home/Index/checkUserName"; //var url="{U('/stfjzd-13/index.php/Home/Index/checkUserName')}"; $.post(url,{username:userName,userpass:userPass},function(msg){ if(msg.errMsg=="ok"){ window.location.href=msg.callback; }else{ alert(msg.errMsg); } },"JSON") } }) </code>
<code> if($userInfo['userpass']!=handleMd5Pass($userPass)){ //此处只echo了错误,但是没有返回到前端。 echo "用户名或密码不正确"; //var_dump(handleMd5Pass($userPass)); } if($userInfo){ //你的代码运行到这里,用户名对,所以查出了userInfo,所以返回了ok。正确应该在密码验证错误的时候就返回给前端,不再往后运行 session('userId',$userInfo['id']); $data=array( 'info' => 'ok', 'callback' => U('/stfjzd-13/index.php/Home/Index/index') ); } $this->ajaxReturn($data);</code>
在注释中
echo "用户名或密码不正确";
这里 return

PHP类型提示提升代码质量和可读性。1)标量类型提示:自PHP7.0起,允许在函数参数中指定基本数据类型,如int、float等。2)返回类型提示:确保函数返回值类型的一致性。3)联合类型提示:自PHP8.0起,允许在函数参数或返回值中指定多个类型。4)可空类型提示:允许包含null值,处理可能返回空值的函数。

PHP中使用clone关键字创建对象副本,并通过\_\_clone魔法方法定制克隆行为。1.使用clone关键字进行浅拷贝,克隆对象的属性但不克隆对象属性内的对象。2.通过\_\_clone方法可以深拷贝嵌套对象,避免浅拷贝问题。3.注意避免克隆中的循环引用和性能问题,优化克隆操作以提高效率。

PHP适用于Web开发和内容管理系统,Python适合数据科学、机器学习和自动化脚本。1.PHP在构建快速、可扩展的网站和应用程序方面表现出色,常用于WordPress等CMS。2.Python在数据科学和机器学习领域表现卓越,拥有丰富的库如NumPy和TensorFlow。

HTTP缓存头的关键玩家包括Cache-Control、ETag和Last-Modified。1.Cache-Control用于控制缓存策略,示例:Cache-Control:max-age=3600,public。2.ETag通过唯一标识符验证资源变化,示例:ETag:"686897696a7c876b7e"。3.Last-Modified指示资源最后修改时间,示例:Last-Modified:Wed,21Oct201507:28:00GMT。

在PHP中,应使用password_hash和password_verify函数实现安全的密码哈希处理,不应使用MD5或SHA1。1)password_hash生成包含盐值的哈希,增强安全性。2)password_verify验证密码,通过比较哈希值确保安全。3)MD5和SHA1易受攻击且缺乏盐值,不适合现代密码安全。

PHP是一种服务器端脚本语言,用于动态网页开发和服务器端应用程序。1.PHP是一种解释型语言,无需编译,适合快速开发。2.PHP代码嵌入HTML中,易于网页开发。3.PHP处理服务器端逻辑,生成HTML输出,支持用户交互和数据处理。4.PHP可与数据库交互,处理表单提交,执行服务器端任务。

PHP在过去几十年中塑造了网络,并将继续在Web开发中扮演重要角色。1)PHP起源于1994年,因其易用性和与MySQL的无缝集成成为开发者首选。2)其核心功能包括生成动态内容和与数据库的集成,使得网站能够实时更新和个性化展示。3)PHP的广泛应用和生态系统推动了其长期影响,但也面临版本更新和安全性挑战。4)近年来的性能改进,如PHP7的发布,使其能与现代语言竞争。5)未来,PHP需应对容器化、微服务等新挑战,但其灵活性和活跃社区使其具备适应能力。

PHP的核心优势包括易于学习、强大的web开发支持、丰富的库和框架、高性能和可扩展性、跨平台兼容性以及成本效益高。1)易于学习和使用,适合初学者;2)与web服务器集成好,支持多种数据库;3)拥有如Laravel等强大框架;4)通过优化可实现高性能;5)支持多种操作系统;6)开源,降低开发成本。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

禅工作室 13.0.1
功能强大的PHP集成开发环境

记事本++7.3.1
好用且免费的代码编辑器

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

WebStorm Mac版
好用的JavaScript开发工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),