wx.getLocation({
<code> type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' success: function (res) { var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 var speed = res.speed; // 速度,以米/每秒计 var accuracy = res.accuracy; // 位置精度 $.ajax({ url:"{:U('home/Share/index')}", data:{latitude:latitude,longitude:longitude}, type:"POST", dataType:"json", success:function(){ } }) }, })</code>
Ajax를 사용하여 값을 백그라운드 컨트롤러로 전송하면 var_dump($_POST)가 null 값이 됩니다. 무슨 일이 일어나고 있는 걸까요?
wx.getLocation({
<code> type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' success: function (res) { var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 var speed = res.speed; // 速度,以米/每秒计 var accuracy = res.accuracy; // 位置精度 $.ajax({ url:"{:U('home/Share/index')}", data:{latitude:latitude,longitude:longitude}, type:"POST", dataType:"json", success:function(){ } }) }, })</code>
Ajax를 사용하여 값을 백그라운드 컨트롤러로 전송하면 var_dump($_POST)가 null 값이 됩니다. 무슨 일이 일어나고 있는 걸까요?
작성 방법이 정확하지 않은 이유는 직접 코드를 디버깅해야 합니다.
육류 테스트 방법:
은 수신된 데이터를 직접 출력한 후 success
에서 반환된 객체를 받아들입니다.
<code>后台输出: echo json_encode($_POST);exit(); 前台输出: success:function(msg){ console.log(msg); }</code>
ajax는 비동기식 요청이므로 컨트롤러에서 직접 출력할 수 없습니다.