微信小程序后端Java接口开发
微信小程序后端Java接口开发
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
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
/**
* 页面的初始数据
*/
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
<text>后端返回的数据:{
{
result}}</text>
注意:!!!! 这里记得设置 如下图 否则会报错:
访问后端成功 如下图
