小程序与后端没什么绝对的关联 小程序通过http请求后端接口即可 wx.request({ method: 'POST', url: 'http://${服务器地址}:${node端口}/${具体接口路由}' // 可以将你的node服务部署到 腾讯服务器上, data: {}, success:function(res){ console.log(res) } }) 小程序只能调用https的接口 不过在开发...