微信小程序
wx.request({
url: 'http://localhost:8090/jjj',
data:{},
method:'GET',
header: {
'content-type': 'application/json'
},
success: function (res) {
console.log(res.data)
}
})
后端
public class Hello {
@GetMapping("/jjj")
public String hello(){
return "hello";
}
}
感觉和vue差不多
浙公网安备 33010602011771号