thinkphp与jquery,该如何解决
程序员文章站
2022-03-25 18:28:26
...
thinkphp与jquery
页面代码为:
jquery事件代码:
logincheck的方法如下:
public function logincheck(){
$email=$_POST['email'];
$pwd=md5($_POST['pwd']);
$user=M('User');
$list=$user->where('email=$email')->find();
if(empty($list)){
echo '该用户不存在';
exit;
}
$list=$user->where('email=$email and pwd=$pwd')->find();
if(empty($list)){
echo '密码错误';
exit;
}
}
因为在User模块里面有设置_empty()方法,所以每次点击后老是会出现_empty()方法中echo出的内容。哪位大神指导下!
页面代码为:
jquery事件代码:
$("#ulogin").click(function(){
$.ajax({
url:"./index.php/User/logincheck",
type:"POST",
data:{email:$("#email").val(),pwd:$("#pwd").val()},
//dataType:'text',
//timeout:1000,
error:function(){
alert('请求错误');
return false;
},
success:function(data){
$('.emailmsg').html(data);
//return false;
}
});
});
logincheck的方法如下:
public function logincheck(){
$email=$_POST['email'];
$pwd=md5($_POST['pwd']);
$user=M('User');
$list=$user->where('email=$email')->find();
if(empty($list)){
echo '该用户不存在';
exit;
}
$list=$user->where('email=$email and pwd=$pwd')->find();
if(empty($list)){
echo '密码错误';
exit;
}
}
因为在User模块里面有设置_empty()方法,所以每次点击后老是会出现_empty()方法中echo出的内容。哪位大神指导下!
thinkphp
jQuery
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: 系统归纳JS常用的方法整理(收藏)
下一篇: 优化vue-cli首屏加载时间
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论