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

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

 

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

上一篇:微信开发准备(三)--框架以及工具的基本使用


下一篇:微信小程序通过api接口将json数据展现到小程序示例