您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關微信小程序如何實現(xiàn)實時聊天并支持圖片預覽的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
首先看一下界面,界面很簡單,就是首頁剛進來獲取了用戶信息頭像,昵稱等。點擊進入聊天室就可以聊天了,下面我介紹的是前端代碼實現(xiàn),后臺需要做的很簡單,就是你給他發(fā)送什么數(shù)據(jù),他就給你返回什么數(shù)據(jù),就是在接收前臺發(fā)送過來的圖片的時候需要做個格式轉換,因為有時候前端將接收到的json字符串轉換json對象的時候,遇到有特殊的標點符號可能會報錯,比如我就是‘\'報的錯,找了半天。
因為有人咨詢,所以附上所有小程序代碼,地址:https://github.com/chongwenwen/weixin_chat/tree/master
有人說為什么沒有utile.js的代碼,這個功能只用到websoket.js跟utile.js沒有關系哦!還有后臺代碼在頁面最底下
文檔目錄結構如下:(聊天頁面為chat)
chat.wxml頁面
首先寫好頁面結構,既然是群聊功能,肯定有自己和別人,所以頁面的view盒子應給有兩部分,一個內容左側顯示,一個內容右側顯示,下面是代碼,因為沒有正式注冊企業(yè)項目,我用的服務器都是本地的服務器,所以界面區(qū)分別人和我的聊天信息是用昵稱區(qū)分的,如果正式項目應該是由一個用戶標記去區(qū)分的
<view class="news" bindtap='outbtn'> <view class="chat-notice" wx:if="{{userInfo}}">系統(tǒng)消息: 歡迎 {{ userInfo.nickName }} 加入群聊</view> <view class="historycon"> <scroll-view scroll-y="true" class="history" scroll-top="{{scrollTop}}"> <block wx:for="{{newslist}}" wx:key> <!-- 歷史消息 --> <!-- <view class="chat-news"> <view > <image class='new_img' src="{{item.avatarUrl? item.avatarUrl:'images/avator.png'}}"></image> <text class="name">{{ item.nickName }}{{item.date}}</text> </view> <view class='you_left'> <block wx:if="{{item.type=='text'}}"> <view class='new_txt'>{{item.content}}</view> </block> <block wx:if="{{item.type=='image'}}"> <image class="selectImg" src="{{item.images}}"></image> </block> </view> </view> --> <view>{{item.date}}</view> <!--自己的消息 --> <view class="chat-news" wx:if="{{item.nickName == userInfo.nickName}}"> <view > <text class="name">{{ item.nickName }}</text> <image class='new_img' src="{{userInfo.avatarUrl}}"></image> </view> <view class='my_right'> <block wx:if="{{item.type=='text'}}"> <view class='new_txt'>{{item.content}}</view> </block> <block wx:if="{{item.type=='image'}}"> <image class="selectImg" src="{{item.images}}" data-src="{{item.images}}" lazy-load="true" bindtap="previewImg"></image> </block> </view> </view> <!-- 別人的消息 --> <view class="chat-news" wx:else> <view > <image class='new_img' src="{{item.avatarUrl? item.avatarUrl:'images/avator.png'}}"></image> <text class="name">{{ item.nickName }}</text> </view> <view class='you_left'> <block wx:if="{{item.type=='text'}}"> <view class='new_txt'>{{item.content}}</view> </block> <block wx:if="{{item.type=='image'}}"> <image class="selectImg" src="{{item.images}}" data-src="{{item.images}}" lazy-load="true" bindtap="previewImg"></image> </block> </view> </view> </block> </scroll-view> </view> </view> <view id="flag"></view> <!-- 聊天輸入 --> <view class="message"> <form bindreset="cleanInput" class="sendMessage"> <input type="text" placeholder="請輸入聊天內容.." value="{{massage}}" bindinput='bindChange'></input> <view class="add" bindtap='increase'>+</view> <button type="primary" bindtap='send' formType="reset" size="small" button-hover="blue">發(fā)送</button> </form> <view class='increased {{aniStyle?"slideup":"slidedown"}}' wx:if="{{increase}}"> <view class="image" bindtap='chooseImage'>相冊 </view> </view> </view>
websoket.js文件
在utils目錄下,是封裝了websoket的請求過程,以便在chat.js中調用。需要注意的是wx.connectSocket代表客戶端首次和服務器建立聯(lián)系,wx.onSocketOpen才是正式打開通道,wx.onSocketMessage必須在 wx.onSocketOpen 回調之后發(fā)送才生效。
wx.onSocketMessage里面帶有參數(shù)是一個函數(shù)回調,這個回調就是后臺服務器實時接收并返給前臺的數(shù)據(jù)
var url = 'ws://........';//服務器地址 function connect(user,func) { wx.connectSocket({ url: url, header:{'content-type': 'application/json'}, success: function () { console.log('信道連接成功~') }, fail: function () { console.log('信道連接失敗~') } }) wx.onSocketOpen(function (res) { wx.showToast({ title: '信道已開通~', icon: "success", duration: 2000 }) //接受服務器消息 wx.onSocketMessage(func);//func回調可以拿到服務器返回的數(shù)據(jù) }); wx.onSocketError(function (res) { wx.showToast({ title: '信道連接失敗,請檢查!', icon: "none", duration: 2000 }) }) } //發(fā)送消息 function send(msg) { wx.sendSocketMessage({ data: msg }); } module.exports = { connect: connect, send: send }
chat.js文件
聊天室的邏輯操作頁面,websocket.connect(){}調用的是websocket.js封裝好的websoket的邏輯函數(shù),回調就是后臺的數(shù)據(jù),之所以在本頁面調用就是方便接收以后的邏輯操作。我建立文件的時候用的就是微信官方的快速模板生成的,所以app.js里面沒有變動,用戶在chat.js獲取userInfo的時候可以引用全局的app.globalData.userInfo
還有要注意的一點就是在選擇發(fā)送圖片的時候,必須是先把本地的圖片地址發(fā)送給后臺,轉換成服務器的圖片地址再次通過wensoket.send發(fā)送給服務器,這個時候服務器推送給其他用戶的才是正確的地址,否則你的本地地址其他用戶是訪問不到的。
// pages/chat/chat.js const app = getApp() var websocket = require('../../utils/websocket.js'); var utils = require('../../utils/util.js'); Page({ /** * 頁面的初始數(shù)據(jù) */ data: { newslist:[], userInfo: {}, scrollTop: 0, increase:false,//圖片添加區(qū)域隱藏 aniStyle: true,//動畫效果 message:"", previewImgList:[] }, /** * 生命周期函數(shù)--監(jiān)聽頁面加載 */ onLoad: function () { var that = this if (app.globalData.userInfo) { this.setData({ userInfo: app.globalData.userInfo }) } //調通接口 websocket.connect(this.data.userInfo, function (res) { // console.log(JSON.parse(res.data)) var list = [] list = that.data.newslist list.push(JSON.parse(res.data)) that.setData({ newslist: list }) }) }, // 頁面卸載 onUnload(){ wx.closeSocket(); wx.showToast({ title: '連接已斷開~', icon: "none", duration: 2000 }) }, //事件處理函數(shù) send: function () { var flag = this if (this.data.message.trim() == ""){ wx.showToast({ title: '消息不能為空哦~', icon: "none", duration: 2000 }) }else { setTimeout(function(){ flag.setData({ increase: false }) },500) websocket.send('{ "content": "' + this.data.message + '", "date": "' + utils.formatTime(new Date()) + '","type":"text", "nickName": "' + this.data.userInfo.nickName + '", "avatarUrl": "' + this.data.userInfo.avatarUrl+'" }') this.bottom() } }, //監(jiān)聽input值的改變 bindChange(res) { this.setData({ message : res.detail.value }) }, cleanInput(){ //button會自動清空,所以不能再次清空而是應該給他設置目前的input值 this.setData({ message: this.data.message }) }, increase() { this.setData({ increase: true, aniStyle: true }) }, //點擊空白隱藏message下選框 outbtn(){ this.setData({ increase: false, aniStyle: true }) }, //發(fā)送圖片 chooseImage() { var that = this wx.chooseImage({ count: 1, // 默認9 sizeType: ['original', 'compressed'], // 可以指定是原圖還是壓縮圖,默認二者都有 sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有 success: function (res) { // 返回選定照片的本地文件路徑列表,tempFilePath可以作為img標簽的src屬性顯示圖片 var tempFilePaths = res.tempFilePaths // console.log(tempFilePaths) wx.uploadFile({ url: 'http://.....', //服務器地址 filePath: tempFilePaths[0], name: 'file', headers: { 'Content-Type': 'form-data' }, success: function (res) { if (res.data){ that.setData({ increase: false }) websocket.send('{"images":"'+ res.data +'","date":"'+utils.formatTime(new Date())+'","type":"image","nickName":"'+that.data.userInfo.nickName+'","avatarUrl":"'+that.data.userInfo.avatarUrl+'"}') that.bottom() } } }) } }) }, //圖片預覽 previewImg(e){ var that = this //必須給對應的wxml的image標簽設置data-set=“圖片路徑”,否則接收不到 var res = e.target.dataset.src var list = this.data.previewImgList //頁面的圖片集合數(shù)組 //判斷res在數(shù)組中是否存在,不存在則push到數(shù)組中, -1表示res不存在 if (list.indexOf(res) == -1 ) { this.data.previewImgList.push(res) } wx.previewImage({ current: res, // 當前顯示圖片的http鏈接 urls: that.data.previewImgList // 需要預覽的圖片http鏈接列表 }) }, //聊天消息始終顯示最底端 bottom: function () { var query = wx.createSelectorQuery() query.select('#flag').boundingClientRect() query.selectViewport().scrollOffset() query.exec(function (res) { wx.pageScrollTo({ scrollTop: res[0].bottom // #the-id節(jié)點的下邊界坐標 }) res[1].scrollTop // 顯示區(qū)域的豎直滾動位置 }) }, })
最后是頁面的樣式文件chat.wxss
/* pages/chat/chat.wxss */ page { background-color: #f7f7f7; height: 100%; } /* 聊天內容 */ .news { padding-top: 30rpx; text-align: center; /* height:100%; */ box-sizing:border-box; } #flag{ margin-bottom: 100rpx; height: 30rpx; } .chat-notice{ text-align: center; font-size: 30rpx; padding: 10rpx 0; color: #666; } .historycon { height: 100%; width: 100%; /* flex-direction: column; */ display: flex; border-top: 0px; } /* 聊天 */ .chat-news{ width: 100%; overflow: hidden; } .chat-news .my_right { float: right; /* right: 40rpx; */ padding: 10rpx 10rpx; } .chat-news .name{ margin-right: 10rpx; } .chat-news .you_left { float: left; /* left: 5rpx; */ padding: 10rpx 10rpx; } .selectImg{ display: inline-block; width: 150rpx; height: 150rpx; margin-left: 50rpx; } .my_right .selectImg{ margin-right: 80rpx; } .new_img { width: 60rpx; height: 60rpx; border-radius: 50%; vertical-align: middle; margin-right: 10rpx; } .new_txt { max-width: 300rpx; display: inline-block; border-radius: 6rpx; line-height: 60rpx; background-color: #95d4ff; padding: 5rpx 20rpx; margin: 0 10rpx; margin-left: 50rpx; } .my_right .new_txt{ margin-right:60rpx; } .you{ background-color: lightgreen; } .my { border-color: transparent transparent transparent #95d4ff; } .you { border-color: transparent #95d4ff transparent transparent; } .hei{ margin-top: 50px; height: 20rpx; } .history { height: 100%; margin-top: 15px; padding: 10rpx; font-size: 14px; line-height: 40px; word-break: break-all; } ::-webkit-scrollbar { width: 0; height: 0; color: transparent; z-index: -1; } /* 信息輸入?yún)^(qū)域 */ .message{ position: fixed; bottom:0; width: 100%; } .sendMessage{ display: block; height: 80rpx; padding: 10rpx 10rpx; background-color: #fff; border-top: 2rpx solid #eee; border-bottom: 2rpx solid #eee; z-index:3; } .sendMessage input{ float:left; width: 66%; height: 100%; line-height: 80rpx; border-bottom: 1rpx solid #ccc; padding:0 10rpx; font-size: 35rpx; color: #666; } .sendMessage view{ display: inline-block; width: 80rpx; height: 80rpx; line-height: 80rpx; font-size: 60rpx; text-align: center; color: #999; border: 1rpx solid #ccc; border-radius: 50%; margin-left: 10rpx; } .sendMessage button { float: right; font-size: 35rpx; } .increased{ width:100%; /* height: 150rpx; */ padding: 40rpx 30rpx; background-color: #fff; } .increased .image{ width: 100rpx; height: 100rpx; border: 3rpx solid #ccc; line-height: 100rpx; text-align: center; border-radius: 8rpx; font-size:35rpx; } @keyframes slidedown { from { transform: translateY(0); } to { transform: translateY(100%); } } .slidedown { animation: slidedown 0.5s linear ; } .slideup { animation: slideup 0.5s linear ; } @keyframes slideup { from { transform: translateY(100%); } to { transform: translateY(0); } }
后臺代碼(圖片):
感謝各位的閱讀!關于“微信小程序如何實現(xiàn)實時聊天并支持圖片預覽”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。