我是靠谱客的博主 陶醉电话,这篇文章主要介绍微信小程序后端Java接口开发的详细步骤,现在分享给大家,希望可以做个参考。

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

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

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

复制代码
1
2
3
4
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>

2、编写controller层

复制代码
1
2
3
4
5
6
7
@RestController public class HelloWorldController { @GetMapping("/helloWorld") public String helloWorld(Integer id){ return "helloworld"+id; } }
复制代码
1
2
3
4
5
6
server: port: 80 servlet: context-path: / tomcat: uri-encoding: utf-8

运行成功


3、创建微信小程序项目


helloworld.js

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** * 页面的初始数据 */ 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

复制代码
1
<text>后端返回的数据:{{result}}</text>

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

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接口开发内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!

最后

以上就是陶醉电话最近收集整理的关于微信小程序后端Java接口开发的详细步骤的全部内容,更多相关微信小程序后端Java接口开发内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(128)

评论列表共有 0 条评论

立即
投稿
返回
顶部