当前位置:   article > 正文

手把手教你写一个微信小程序(前端+Java后端)

手把手 带后台的小程序

点击关注公众号,利用碎片时间学习

前言

现在微信小程序越来越火了,相信不少人都通过各种途径学习过微信小程序或者尝试开发,作者就是曾经由于兴趣了解开发过微信小程序,最终自己的毕业设计也是开发一个微信小程序。所以现在用这篇博客记录我之前开发的一些经验和一些心得吧。

主要内容

  • springboot后端架构构建

  • 小程序项目构建

  • 小程序api调用

  • 后台resetful接口编写

  • 小程序调用后台接口

  • 免费的https申请

  • linux下部署上线

微信小程序项目构建

这些基础的东西我就不过多介绍,大家在刚开始开发的时候一般都没有自己的服务器及域名,所以大家在本地编写的时候,在“详细”下的“项目设置”里面将“不校验域名安全性”勾选。

bc9a5915659ce37b0cff115c7eef095a.png

至于微信小程序的组件,即前端页面的开发希望大家耐住寂寞认真在微信开发平台上研究。

  • 组件:https://developers.weixin.qq.com/miniprogram/dev/component/

  • api:https://developers.weixin.qq.com/miniprogram/dev/api/

后端详解

我在后端编写主要是用java,当然对其他开发语言熟悉的也可以使用其他语言开发后端。现在我就java编写后端api的讲解。主要框架springboot,开发工具myeclipse,服务器阿里云服务器。

创建一个maven项目,导入相关依赖:

pom.xml依赖

  1. <!-- 统一版本控制 -->
  2. <parent>
  3.  <groupId>org.springframework.boot</groupId>
  4.  <artifactId>spring-boot-starter-parent</artifactId>
  5.  <version>1.5.9.RELEASE</version>
  6. </parent>
  7. <dependencies>
  8.  <!-- freemarker渲染页面 -->
  9.  <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-freemarker -->
  10.  <dependency>
  11.   <groupId>org.springframework.boot</groupId>
  12.   <artifactId>spring-boot-starter-freemarker</artifactId>
  13.  </dependency>
  14.  <!-- spring boot 核心 -->
  15.  <dependency>
  16.   <groupId>org.springframework.boot</groupId>
  17.   <artifactId>spring-boot-starter-web</artifactId>
  18.  </dependency>
  19.  <!-- springboot整合jsp -->
  20.  <!-- tomcat 的支持. -->
  21.  <dependency>
  22.   <groupId>org.springframework.boot</groupId>
  23.   <artifactId>spring-boot-starter-web</artifactId>
  24.   <exclusions>
  25.    <exclusion>
  26.     <groupId>org.springframework.boot</groupId>
  27.     <artifactId>spring-boot-starter-tomcat</artifactId>
  28.    </exclusion>
  29.   </exclusions>
  30.  </dependency>
  31.  <dependency>
  32.   <groupId>org.apache.tomcat.embed</groupId>
  33.   <artifactId>tomcat-embed-jasper</artifactId>
  34.  </dependency>
  35. </dependencies>

在配置文件src/main/resources/下创建application.properties文件可以修改一些配置参数等。

  1. #jsp支持
  2. spring.mvc.view.suffix=.jsp
  3. spring.mvc.view.prefix=/WEB-INF/jsp/
  4. #this is set port
  5. #server.port=80
  6. server.port=443
  7. #添加ssl证书
  8. #ssl证书文件名
  9. server.ssl.key-store=classpath:xxxxxxx.pfx
  10. server.ssl.key-store-password=xxxxxxxx
  11. server.ssl.keyStoreType=xxxxxxxx

在实际项目中可能涉及数据库,还要整合mybatis,在文章中,我仅仅做测试就不做使用数据库的测试。

首先创建springboot的入口程序:app.class下面贴上代码:

  1. @ComponentScan(basePackages= "com.bin")//添加扫包@ComponentScan(basePackages= "")
  2. @EnableAutoConfiguration
  3. public class App{
  4.  //启动springboot
  5.  public static void main(String[] args) {
  6.   SpringApplication.run(App.class, args);
  7.  }
  8. }

启动项目时直接右击run即可。

在写一个测试的controller进行微信小程序与java后端实现通信,controller代码如下:

  1. @RestController
  2. @SpringBootApplication
  3. public class ControllerText {
  4.  
  5.  @RequestMapping("getUser")
  6.  public Map<String, Object> getUser(){
  7.   System.out.println("微信小程序正在调用。。。");
  8.   Map<String, Object> map = new HashMap<String, Object>();
  9.   List<String> list = new ArrayList<String>();
  10.    list.add("zhangsan");
  11.    list.add("lisi");
  12.    list.add("wanger");
  13.    list.add("mazi");
  14.    map.put("list",list);
  15.   System.out.println("微信小程序调用完成。。。");
  16.   return map;
  17.  }
  18.  
  19.  @RequestMapping("getWord")
  20.  public Map<String, Object> getText(String word){
  21.   Map<String, Object> map = new HashMap<String, Object>();
  22.   String message = "我能力有限,不要为难我";
  23.   if ("后来".equals(word)) {
  24.    message="正在热映的后来的我们是刘若英的处女作。";
  25.   }else if("微信小程序".equals(word)){
  26.    message= "想获取更多微信小程序相关知识,请更多的阅读微信官方文档,还有其他更多微信开发相关的内容,学无止境。";
  27.   }else if("西安工业大学".equals(word)){
  28.    message="西安工业大学(Xi'an Technological University)简称”西安工大“,位于世界历史名城古都西安,是中国西北地区唯一一所以兵工为特色,以工为主,理、文、经、管、法协调发展的教学研究型大学。原中华人民共和国兵器工业部直属的七所本科院校之一(“兵工七子”),陕西省重点建设的高水平教学研究型大学、陕西省人民政府与中国兵器工业集团、国防科技工业局共建高校、教育部“卓越工程师教育培养计划”试点高校、陕西省大学生创新能力培养综合改革试点学校。国家二级保密资格单位,是一所以\"军民结合,寓军于民\"的国防科研高校。";
  29.   }
  30.   map.put("message", message);
  31.   return map;
  32.  }
  33.  
  34.  @RequestMapping("")
  35.  public String getText(){
  36.   return "hello world";
  37.  }
  38. }

至此简易的后端框架及测试基本完成。

说明:@RestController与@Controller注解的区别@RestController相当于两个注解,它能实现将后端得到的数据在前端页面(网页)中以json串的形式传递。而微信小程序与后台之间的数据传递就是以json报文的形式传递。所以这就是选择springboot框架开发小程序后端的主要原因之一。可以方面我们进行小程序的后端开发。

小程序发起网络请求

在完成了小程序的后端开发,下面进行小程序端发起网络请求。

下面以一个简单的按钮请求数据为例:

wxml文件

  1. <button bindtap='houduanButton1'>点击发起请求</button>
  2. <view wx:for="{{list}}">
  3.     姓名:{{item}}
  4.   </view>

js文件

  1. /**
  2.    * 页面的初始数据
  3.    */
  4.   data: {
  5.     list: '',
  6.     word: '',
  7.     message:''
  8.   },
  9.   houduanButton1: function () {
  10.     var that = this;
  11.     wx.request({
  12.       url: 'http://localhost:443/getUser',
  13.       method: 'GET',
  14.       header: {
  15.         'content-type''application/json' // 默认值
  16.       },
  17.       success: function (res) {
  18.         console.log(res.data)//打印到控制台
  19.         var list = res.data.list;
  20.         if (list == null) {
  21.           var toastText = '数据获取失败';
  22.           wx.showToast({
  23.             title: toastText,
  24.             icon: '',
  25.             duration: 2000
  26.           });
  27.         } else {
  28.           that.setData({
  29.             list: list
  30.           })
  31.         }
  32.       }
  33.     })
  34.   }

主要调用的api就是wx.request,想知道将详细的介绍大家可以去微信公众平台。

接下来以搜索类型的请求为例:

wxml文件:

  1. <input type="text" class="houduanTab_input" placeholder="请输入你要查询的内容" bindinput='houduanTab_input'></input>
  2.   <button bindtap='houduanButton2'>查询</button>
  3.   <view wx:if="{{message!=''}}">
  4.     {{message}}
  5.   </view>

js文件:变量的定义见上一个js文件

  1. //获取输入框的内容
  2.   houduanTab_input: function (e) {
  3.     this.setData({
  4.       word: e.detail.value
  5.     })
  6.   },
  7.   // houduanButton2的网络请求
  8.   houduanButton2: function () {
  9.     var that = this;
  10.     wx.request({
  11.       url: 'http://localhost:443/getWord',
  12.       data:{
  13.         word: that.data.word
  14.       },
  15.       method: 'GET',
  16.       header: {
  17.         'content-type''application/json' // 默认值
  18.       },
  19.       success: function (res) {
  20.         console.log(res.data)//打印到控制台
  21.         var message = res.data.message;
  22.         if (message == null) {
  23.           var toastText = '数据获取失败';
  24.           wx.showToast({
  25.             title: toastText,
  26.             icon: '',
  27.             duration: 2000
  28.           });
  29.         } else {
  30.           that.setData({
  31.             message: message
  32.           })
  33.         }
  34.       }
  35.     })
  36.   }

至此已经完成了简易的微信小程序端与java后端进行通信。

现在可以在启动后端项目在微信开发工具上进行测试。

演示效果:75875c14261bd72252db0e9c98afa659.gif

d2a97c47c74cf34816f02ae08931d377.gif

所以至此已经完成了小程序的前后端通信。

https申请

其实也不算什么申请,在购买域名之后可以申请免费的ssl证书,在前面的配置文件application.properties中有证书的配置,将证书的pfx文件直接添加到后端项目下即可。

购买服务器部署后端api代码

对于springboot项目,本人建议打jar,直接在服务器上部署即可,在服务器上只需要安装对应版本的jdk即可。项目部署命令:

我购买的是阿里云的轻量级应用服务器部署的。比较划算吧。

运行命令:nohup java -jar helloworld.jar &

nohup的意思不挂服务,常驻的意思,除非云服务器重启,那就没法了;最后一个&表示执行命令后要生成日志文件nohup.out

当然还可以使用java -jar helloworld.jar

源码:

链接: https://pan.baidu.com/s/1PfByFfEgqkVALcc3PRhn9w 提取码: c7yf

来源:blog.csdn.net/zwb19940216/

article/details/81023191

推荐:

主流Java进阶技术(学习资料分享)

b01a47e1c7d6477d93002c5d6a3e1bf9.png

PS:因为公众号平台更改了推送规则,如果不想错过内容,记得读完点一下“在看”,加个“星标”,这样每次新文章推送才会第一时间出现在你的订阅列表里。点“在看”支持我们吧!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/279560
推荐阅读
相关标签
  

闽ICP备14008679号