美文网首页
网络请求

网络请求

作者: 九尾的日志 | 来源:发表于2018-08-24 16:13 被阅读0次

    微信小程序进行网络通信,只能和指定的域名进行通信
    在开发设置里面设置合法域名

    
    //进行post请求
    
    wx.request({
        url: 'test.php', //仅为示例,并非真实的接口地址 
    
        data: { 
            x: '2' , 
            y: '6' 
        }, 
    
        header: { 
            'content-type': 'application/json' // 默认值
        }, 
    
         method:"POST",
        
        success: function(res) {
            console.log(res.data)
        },
    
        fail: function (err) {
            console.log(err)
        }
    })
    

    相关文章

      网友评论

          本文标题:网络请求

          本文链接:https://www.haomeiwen.com/subject/dnfiiftx.html