博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
微信小程序评论/留言功能,附:前端+后端代码+视频讲解!
阅读量:5867 次
发布时间:2019-06-19

本文共 3356 字,大约阅读时间需要 11 分钟。

前端界面:

clipboard.png

演示:

图片描述

{
{item.result}}
以下是留言内容
{
{item.nickname}}
{
{item.lytime}}
{
{item.liuyantext}}
//index.js//获取应用实例const app = getApp()Page({  /**   * 页面的初始数据   */  data: {      },  //授权登录  login: function () {    var that = this;    // 查看是否授权    wx.getSetting({      success(res) {        if (res.authSetting['scope.userInfo']) {          // 已经授权,可以直接调用 getUserInfo 获取头像昵称          wx.getUserInfo({            success: function (res) {              console.log(res.userInfo),                that.setData({                  nickName: res.userInfo.nickName,                  avatarUrl: res.userInfo.avatarUrl,                })            }          })        }      }    })  },  bindGetUserInfo(e) {    console.log(e.detail.userInfo)  },  formSubmit: function (e) {    wx.showToast({      title: '已留言',      icon: 'success'    })    var that = this;    var liuyantext = e.detail.value.liuyantext; //获取表单所有name=liuyantext的值     var nickName = e.detail.value.nickname; //获取表单所有name=nickName的值     var headimg = e.detail.value.headimg; //获取表单所有name=headimg的值     wx.request({      url: 'http://localhost/liuyanserver/liuyan.php?liuyantext=' + liuyantext + '&nickname=' + nickName + '&headimg=' + headimg,      data: {        liuyantext,        nickName,        headimg      },      header: { 'Content-Type': 'application/json' },      success: function (res) {        console.log(res.data)        that.setData({          re: res.data,        })        wx.hideToast();      }    })  },  onPullDownRefresh: function () {    wx.showNavigationBarLoading();    var that = this    wx.request({      url: 'http://localhost/liuyanserver/loadliuyan.php',      headers: {        'Content-Type': 'application/json'      },      success: function (res) {        //将获取到的json数据,存在名字叫list的这个数组中        that.setData({          liuyanlist: res.data,          //res代表success函数的事件对,data是固定的,liuyanlist是数组        })        // 隐藏导航栏加载框        wx.hideNavigationBarLoading();        // 停止下拉动作        wx.stopPullDownRefresh();      }    })  },  //加载最新数据  onLoad: function () {    var that = this    wx.request({      url: 'http://localhost/liuyanserver/loadliuyan.php',      headers: {        'Content-Type': 'application/json'      },      success: function (res) {        //将获取到的json数据,存在名字叫list的这个数组中        that.setData({          liuyanlist: res.data,          //res代表success函数的事件对,data是固定的,liuyanlist是数组        })      }    })  }})
/**index.wxss**/.input-style{  width: 90%;  height: 50px;  border:1px solid #ccc;  margin:10px auto;}.btn{  width: 88%;  margin:5px auto;}.liuyanview{  width: 90%;  margin: 10px auto;}.result{  text-align: center;  font-size: 14px;  color: #f00;  margin-top: 20px;}.headimg{  width: 45px;  height: 45px;  border-radius: 100%;}.headimg image{  width: 45px;  height: 45px;  border-radius: 100%;}.nickname_liuyantext{  width: calc(100% - 55px);  float: right;  margin-top:-45px;}.nickname_liuyantext .nickname{  font-size: 15px;  color: #999;}.nickname_liuyantext .nickname .time{  font-size: 11px;  color: #999;  float: right;}.nickname_liuyantext .text{  font-size: 16px;  color: #666;}

以上是前端部分

后端有两个文件。

点击下载后端,后端需要修改自己的数据库配置!

数据库格式:

clipboard.png

转载地址:http://ponnx.baihongyu.com/

你可能感兴趣的文章
Android 打开WIFI并快速获取WIFI的信息
查看>>
【IOS开发】GDataXML解析XML
查看>>
GridView多行多列合并单元格(指定列合并)
查看>>
什么是DDOS攻击?怎么防御?
查看>>
状态模式(State Pattern)
查看>>
log4j日志框架学习
查看>>
function 与 => 的区别
查看>>
EXCEL自动撤销合并单元格并填充相应内容(转帖)
查看>>
Python3学习笔记10-条件控制
查看>>
黄聪:如何使用CodeSmith批量生成代码(原创系列教程)
查看>>
HDOJ---1421 搬寝室[DP]
查看>>
JS 中的== 与 ===
查看>>
ES6 - 收藏集 - 掘金
查看>>
13.11. this is incompatible with sql_mode=only_full_group_by
查看>>
Python Module_openpyxl_处理Excel表格
查看>>
css动画实现div内图片逆时针旋转
查看>>
CSS的工作过程
查看>>
为什么码农要了解业务?
查看>>
微软整合实验(七):布署Exchange2010 Mailbox高可用(DAG)
查看>>
spring定时器----JobDetailBean
查看>>