跨域请求(通过id获取用户整个信息并返回到前台)
前台页面
jQuery.ajax({
type: "get",
url: Apiurl+"user/userinfo",
dataType: "json",
data:{
'userid':user,(用户id)
},
//赋值给前台页面
success: function (arr) {
$('#nickname').html(arr.nicheng);
$('#text').html(arr.nicheng);
$('#username').html(arr.phone);
$('#pics').html(arr.pic);
},
error:function(){
console.log('请求失败');
}
})
控制器
public function userinfo(){
$userinfo = M('user');
$data = $userinfo->where('id='.$_GET['userid'])->find();
$this->ajaxreturn($data);die;
}
只是一个小菜鸟,在不断完善自己的知识,如有不对,请指出问题