How to call local interface in mini program

王林
Release: 2020-03-25 11:43:05
Original
5457 people have browsed it

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)  
      }  
    })
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!