在微信小程序中调用本地接口
Posted dekevin技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在微信小程序中调用本地接口相关的知识,希望对你有一定的参考价值。
1.点击详情,并勾选项目设置中最后一行。
2.用小程序请求本地的后台服务接口
wx.request({ url: \'http://localhost:8090/DemoProject/myTest.do\', data:{}, method:\'POST\', header: { \'content-type\': \'application/x-www-form-urlencoded\' }, success: function (res) { console.log(res.data) } })
以上是关于在微信小程序中调用本地接口的主要内容,如果未能解决你的问题,请参考以下文章