在微信小程序中调用本地接口

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)  
      }  
    })

猜你喜欢

转载自www.cnblogs.com/dekevin/p/10226742.html