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

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

 

posted @ 2019-01-05 23:23  dekevin  阅读(4218)  评论(0编辑  收藏  举报