Home  >  Article  >  WeChat Applet  >  How to call local interface in mini program

How to call local interface in mini program

王林
王林Original
2020-03-25 11:43:055471browse

How to call local interface in mini program

1. Click Details and check the last line in the project settings.

How to call local interface in mini program

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn