1. Click Details and check the last line in the project settings.
2. Use a mini program to request the local backend service interface
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) } })
Recommended tutorial: Mini Program Development Tutorial
The above is the detailed content of How to call local interface in mini program. For more information, please follow other related articles on the PHP Chinese website!