连接数据库
1.发起请求:
微信小程序是以https方式提交数据到你的后台(案例为本地测试,暂时跳过)
onLoad: function () { wx.request({ url: 'http://dev.cfo-mentor.com/menter/resources/views/demo/132.php', //服务器地址 data: { name: 'bob'//请求参数 }, header: { 'content-type': 'application/json' }, success: function (res) { console.log(res.data)