uniapp 解决post参数丢失问题

uni.request({
       
    url: 'https://www.demo.com/request', //测试域名  
    header: {
     'content-type': 'application/x-www-form-urlencoded'} 
    method: 'POST',  
     data: {
       
        mobile: 1101201191025,  
        scenario: ceshi123456,
        num:123456  
    },  
    success: function(result) {
       
        console.log(result.data);  
    }  
});

方法一:请求需要引入demo中的header即可

 header: {
     'content-type': 'application/x-www-form-urlencoded'} 

方法二:header,服务端可以使用如下方法获取数据:

file_get_contents("php://input");

你可能感兴趣的:(基础知识,ajax,前端,jquery)