javascript - 微信小程序中使用ajax的问题
巴扎黑
巴扎黑 2017-04-11 11:11:02
0
3
333

根据这篇文章微信小程序使用ajax请求到自己的网站,可以在微信小程序中使用XMLHttpRequest对象实现ajax请求,但实际测试,在page/index/index.js中添加

  onLoad() {
    console.log(XMLHttpRequest);
    console.log('onLoad');
  }

在开发者工具上打印结果却是undefined,是文章错误,还是小程序更新删除了?

巴扎黑
巴扎黑

reply all(3)
迷茫

以我所知,微信小程序是用MINA开发的。
并没有实现浏览器之类的XMLHttpRequest的方法。
只有wx.request 这个api

黄舟
xmlhttp=new XMLHttpRequest();
console.log(xmlhttp);
小葫芦

微信小程序没有window与document对象,只能使用小程序的API,比如:

wx.request({
  url: 'test.php', //仅为示例,并非真实的接口地址
  data: {
     x: '' ,
     y: ''
  },
  header: {
      'content-type': 'application/json'
  },
  success: function(res) {
    console.log(res.data)
  }
})

wx.request(OBJECT)

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!