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

网友投稿 1010 2022-09-16


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

目录1、搭建一个springboot项目并引入依赖2、编写controller层3、创建微信小程序项目

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

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

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

org.springframework.boot

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

访问后端成功 如下图


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:华为设备配置CE双归属
下一篇:路由信息的来源(路由信息的来源有哪些)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~