84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
根据这篇文章微信小程序使用ajax请求到自己的网站,可以在微信小程序中使用XMLHttpRequest对象实现ajax请求,但实际测试,在page/index/index.js中添加
onLoad() { console.log(XMLHttpRequest); console.log('onLoad'); }
在开发者工具上打印结果却是undefined,是文章错误,还是小程序更新删除了?
以我所知,微信小程序是用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)
以我所知,微信小程序是用MINA开发的。
并没有实现浏览器之类的XMLHttpRequest的方法。
只有wx.request 这个api
微信小程序没有window与document对象,只能使用小程序的API,比如:
wx.request(OBJECT)