本篇内容介绍了“小程序与后端Java接口交互实现HelloWorld”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
目录第一步:后端简单建个SpringBoot项目,提供一个 helloWorld接口;
第二步:新建一个helloWorld 微信小程序,请求后端
第一步:后端简单建个SpringBoot项目,提供一个 helloWorld接口;版本选用 2.2.6.RELEASE
package com.java1234.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * @author java1234_小锋 * @site * @company 南通小锋网络科技有限公司 * @create 2021-07-04 17:43 */ @RestController public class HelloWorldController { @GetMapping("/helloWorld") public String helloWorld(Integer id){ return "helloWorld "+id; } }application.yml
server: port: 80 servlet: context-path: / tomcat: uri-encoding: utf-8浏览器访问:?id=1
页面显示:
helloWorld 1
第二步:新建一个helloWorld 微信小程序,请求后端helloWorld.js
通过微信小程序API wx.request调用后端接口
// pages/helloWorld.js Page({ /** * 页面的初始数据 */ data: { result:"请求后台中..." }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that=this; this.getData(that); }, getData(that){ wx.request({ url: '', method:"GET", data:{ id:100 }, header: { 'content-type': 'application/json' // 默认值 }, success(res){ console.log(res.data); console.log(that) that.setData({ result:res.data }) } }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })helloWorld.wxml
<!--pages/helloWorld.wxml--> <text>返回值:{{result}}</text>运行报错了:
VM8 asdebug.js:1 Cannot send network request to localhost.(env: Windows,mp,1.05.2105170; lib: 2.18.0)
这里我们需要设置下:
详情->本地设置->勾选 “不校验合法域名、web-view (业务域名)、TLS版本以及HITPS证书”
勾选后,重新编译,运行OK;
扩展下,如果是域名调用,比如 改成
报错:
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。