thinkphp与jquery,该如何解决

原创
2016-06-13 11:22:33 675浏览

thinkphp与jquery
页面代码为:

邮箱

密码



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