时间:2019-05-04 来源:小程序工厂
微信小程序不能直连MySQL数据库
只能 微信小程序<----> 服务器 <----->MySQL数据库
云开发的数据库可以
那微信小程序具体是怎么链接云服务器的 ,文档里的描述太简洁了,看不懂...
wx.request({ url: 'https://xxx.com', //仅为示例,并非真实的接口地址
data: { }, header: { 'content-type': 'application/json' // 默认值
},
success (res) { console.log(res.data)
}
})