微信小程序后端Java接口开发的详细步骤

现在微信小程序越来越火了,相信不少人都通过各种途径学习过微信小程序或者尝试开发,本文就介绍了微信小程序后端Java接口开发的详细步骤,感兴趣的同学可以学习一下

微信小程序使用wx.request(OBJECT)来调用后端接口。

首先 我们来一个简单案例 —— helloworld实现

1、搭建一个springboot项目并引入依赖

在这里插入图片描述

  org.springframework.bootspring-boot-starter-web

2、编写controller层

 @RestController public class HelloWorldController { @GetMapping("/helloWorld") public String helloWorld(Integer id){ return "helloworld"+id; } } 
 server: port: 80 servlet: context-path: / tomcat: uri-encoding: utf-8 

运行成功

在这里插入图片描述

3、创建微信小程序项目

在这里插入图片描述

helloworld.js

 /** * 页面的初始数据 */ data: { result:'请求后台中.....' }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that=this; this.getData(that); }, getData(that){ wx.request({ url: 'http://localhost:8080/helloWorld', method:'GET', data:{ id:666 }, header:{ 'content-type':'application/json'  //默认值 }, success(res){ console.log(res.data); console.log(that); that.setData({ result:res.data }) } }) },

helloworld.wxml

 后端返回的数据:{{result}}

注意:!!!!
这里记得设置 如下图
否则会报错:

VM9 asdebug.js:1 http://localhost 不在以下 request
合法域名列表中,请参考文档:https://developers.weixin.qq.com/miniprogram/dev/framework/ability/network.html(env:
Windows,mp,1.05.2110110; lib: 2.19.4)

在这里插入图片描述

访问后端成功 如下图

在这里插入图片描述

到此这篇关于微信小程序后端Java接口开发的详细步骤的文章就介绍到这了,更多相关小程序后端Java接口开发内容请搜索0133技术站以前的文章或继续浏览下面的相关文章希望大家以后多多支持0133技术站!

以上就是微信小程序后端Java接口开发的详细步骤的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java