• uniapp——实现聊天室功能——技能提升


    首先声明一点:下面的内容是从一个uniapp的程序中摘录的,并非本人所写,先做记录,以免后续遇到相似需求抓耳挠腮。

    效果图

    在这里插入图片描述

    聊天室功能

    发送图片 相机 发红包系列 聊天 发送表情
    代码中还包含发送语音,但是测试发现,该功能不太成熟,而且页面上并未提供发送语音的入口。

    代码——html部分

    <template>
    	<view>
    		<view class="content" @touchstart="hideDrawer">
    			<scroll-view class="msg-list" :class="popupLayerClass" scroll-y="true"
    				:scroll-with-animation="scrollAnimation" :scroll-top="scrollTop" :scroll-into-view="scrollToView"
    				@scrolltoupper="loadHistory" upper-threshold="50">
    				<!-- 加载历史数据waitingUI -->
    				<view class="loading">
    					<view class="spinner">
    						<view class="rect1"></view>
    						<view class="rect2"></view>
    						<view class="rect3"></view>
    						<view class="rect4"></view>
    						<view class="rect5"></view>
    					</view>
    				</view>
    				<view class="row" v-for="(row,index) in msgList" :key="index" :id="'msg'+row.msg.id">
    					<!-- 系统消息 -->
    					<block v-if="row.type=='system'">
    						<view class="system">
    							<!-- 文字消息 -->
    							<view v-if="row.msg.type=='text'" class="text">
    								{{row.msg.content.text}}
    							</view>
    							<!-- 领取红包消息 -->
    							<view v-if="row.msg.type=='redEnvelope'" class="red-envelope">
    								<image src="/static/chat/red-envelope-chat.png"></image>
    								{{row.msg.content.text}}
    							</view>
    						</view>
    					</block>
    					<!-- 用户消息 -->
    					<block v-if="row.type=='user'">
    						<!-- 自己发出的消息 -->
    						<view class="my" v-if="row.msg.userinfo.uid==myuid">
    							<!---消息 -->
    							<view class="left">
    								<!-- 文字消息 -->
    								<view v-if="row.msg.type=='text'" class="bubble">
    									<rich-text :nodes="row.msg.content.text"></rich-text>
    								</view>
    								<!-- 语言消息 -->
    								<view v-if="row.msg.type=='voice'" class="bubble voice" @tap="playVoice(row.msg)"
    									:class="playMsgid == row.msg.id?'play':''">
    									<view class="length">{{row.msg.content.length}}</view>
    									<view class="icon my-voice"></view>
    								</view>
    								<!-- 图片消息 -->
    								<view v-if="row.msg.type=='img'" class="bubble img" @tap="showPic(row.msg)">
    									<image :src="row.msg.content.url"
    										:style="{'width': row.msg.content.w+'px','height': row.msg.content.h+'px'}">
    									</image>
    								</view>
    								<!-- 红包 -->
    								<view v-if="row.msg.type=='redEnvelope'" class="bubble red-envelope"
    									@tap="openRedEnvelope(row.msg,index)">
    									<image src="/static/chat/red-envelope.png"></image>
    									<view class="tis">
    										<!-- 点击开红包 -->
    									</view>
    									<view class="blessing">
    										{{row.msg.content.blessing}}
    									</view>
    								</view>
    
    							</view>
    							<!---头像 -->
    							<view class="right">
    								<image :src="row.msg.userinfo.face"></image>
    							</view>
    						</view>
    						<!-- 别人发出的消息 -->
    						<view class="other" v-if="row.msg.userinfo.uid!=myuid">
    							<!---头像 -->
    							<view class="left">
    								<image :src="row.msg.userinfo.face"></image>
    							</view>
    							<!---用户名称-时间-消息 -->
    							<view class="right">
    								<view class="username">
    									<view class="name">{{row.msg.userinfo.username}}</view>
    									<view class="time">{{row.msg.time}}</view>
    								</view>
    								<!-- 文字消息 -->
    								<view v-if="row.msg.type=='text'" class="bubble">
    									<rich-text :nodes="row.msg.content.text"></rich-text>
    								</view>
    								<!-- 语音消息 -->
    								<view v-if="row.msg.type=='voice'" class="bubble voice" @tap="playVoice(row.msg)"
    									:class="playMsgid == row.msg.id?'play':''">
    									<view class="icon other-voice"></view>
    									<view class="length">{{row.msg.content.length}}</view>
    								</view>
    								<!-- 图片消息 -->
    								<view v-if="row.msg.type=='img'" class="bubble img" @tap="showPic(row.msg)">
    									<image :src="row.msg.content.url"
    										:style="{'width': row.msg.content.w+'px','height': row.msg.content.h+'px'}">
    									</image>
    								</view>
    								<!-- 红包 -->
    								<view v-if="row.msg.type=='redEnvelope'" class="bubble red-envelope"
    									@tap="openRedEnvelope(row.msg,index)">
    									<image src="/static/chat/red-envelope.png"></image>
    									<view class="tis">
    										<!-- 点击开红包 -->
    									</view>
    									<view class="blessing">
    										{{row.msg.content.blessing}}
    									</view>
    								</view>
    							</view>
    						</view>
    					</block>
    				</view>
    			</scroll-view>
    		</view>
    		<!-- 抽屉栏 -->
    		<view class="popup-layer" :class="popupLayerClass" @touchmove.stop.prevent="discard">
    			<!-- 表情 -->
    			<swiper class="emoji-swiper" :class="{hidden:hideEmoji}" indicator-dots="true" duration="150">
    				<swiper-item v-for="(page,pid) in emojiList" :key="pid">
    					<view v-for="(em,eid) in page" :key="eid" @tap="addEmoji(em)">
    						<!-- https://zhoukaiwen.com/img/icon/emojj1/1.png -->
    						<image mode="widthFix" :src="'https://zhoukaiwen.com/img/icon/emojj1/'+em.url"></image>
    					</view>
    				</swiper-item>
    			</swiper>
    			<!-- 更多功能 相册-拍照-红包 -->
    			<view class="more-layer" :class="{hidden:hideMore}">
    				<view class="list">
    					<view class="box" @tap="chooseImage">
    						<view class="icon tupian2"></view>
    					</view>
    					<view class="box" @tap="camera">
    						<view class="icon paizhao"></view>
    					</view>
    					<view class="box" @tap="handRedEnvelopes">
    						<view class="icon hongbao"></view>
    					</view>
    				</view>
    			</view>
    		</view>
    		<!-- 底部输入栏 -->
    		<view class="input-box cu-bar tabbar" :class="popupLayerClass" @touchmove.stop.prevent="discard">
    			<!-- H5下不能录音,输入栏布局改动一下 -->
    			<!-- #ifndef H5 -->
    			<view class="voice">
    				<view class="icon" :class="isVoice?'jianpan':'yuyin'" @tap="switchVoice"></view>
    			</view>
    			<!-- #endif -->
    			<!-- #ifdef H5 -->
    			<view class="more" @tap="showMore">
    				<view class="icon add"></view>
    			</view>
    			<!-- #endif -->
    			<view class="textbox">
    				<view class="voice-mode" :class="[isVoice?'':'hidden',recording?'recording':'']"
    					@touchstart="voiceBegin" @touchmove.stop.prevent="voiceIng" @touchend="voiceEnd"
    					@touchcancel="voiceCancel">{{voiceTis}}</view>
    				<view class="text-mode" :class="isVoice?'hidden':''">
    					<view class="box">
    						<textarea auto-height="true" v-model="textMsg" @focus="textareaFocus" />
    					</view>
    					<view class="em" @tap="chooseEmoji">
    						<view class="icon biaoqing"></view>
    					</view>
    				</view>
    			</view>
    			<!-- #ifndef H5 -->
    			<view class="more" @tap="showMore">
    				<view class="icon add"></view>
    			</view>
    			<!-- #endif -->
    			<view class="send" :class="isVoice?'hidden':''" @tap="sendText">
    				<view class="btn">发送</view>
    			</view>
    		</view>
    		<!-- 录音UI效果 -->
    		<view class="record" :class="recording?'':'hidden'">
    			<view class="ing" :class="willStop?'hidden':''">
    				<view class="icon luyin2"></view>
    			</view>
    			<view class="cancel" :class="willStop?'':'hidden'">
    				<view class="icon chehui"></view>
    			</view>
    			<view class="tis" :class="willStop?'change':''">{{recordTis}}</view>
    		</view>
    		<!-- 红包弹窗 -->
    		<view class="windows" :class="windowsState">
    			<!-- 遮罩层 -->
    			<view class="mask" @touchmove.stop.prevent="discard" @tap="closeRedEnvelope"></view>
    			<view class="layer" @touchmove.stop.prevent="discard">
    				<view class="open-redenvelope">
    					<view class="top">
    						<view class="close-btn">
    							<view class="icon close" @tap="closeRedEnvelope"></view>
    						</view>
    						<image src="https://zhoukaiwen.com/img/qdpz/face/face_1.jpg"></image>
    					</view>
    					<view class="from">来自{{redenvelopeData.from}}</view>
    					<view class="blessing">{{redenvelopeData.blessing}}</view>
    					<view class="money">{{redenvelopeData.money}}</view>
    					<view class="showDetails" @tap="toDetails(redenvelopeData.rid)">
    						查看领取详情 <view class="icon to"></view>
    					</view>
    				</view>
    			</view>
    
    		</view>
    	</view>
    </template>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211

    代码——js部分

    <script>
    	export default {
    		data() {
    			return {
    				//文字消息
    				textMsg: '',
    				//消息列表
    				isHistoryLoading: false,
    				scrollAnimation: false,
    				scrollTop: 0,
    				scrollToView: '',
    				msgList: [],
    				msgImgList: [],
    				myuid: 0,
    
    				//录音相关参数
    				// #ifndef H5
    				//H5不能录音
    				RECORDER: uni.getRecorderManager(),
    				// #endif
    				isVoice: false,
    				voiceTis: '按住 说话',
    				recordTis: "手指上滑 取消发送",
    				recording: false,
    				willStop: false,
    				initPoint: {
    					identifier: 0,
    					Y: 0
    				},
    				recordTimer: null,
    				recordLength: 0,
    
    				//播放语音相关参数
    				AUDIO: uni.createInnerAudioContext(),
    				playMsgid: null,
    				VoiceTimer: null,
    				// 抽屉参数
    				popupLayerClass: '',
    				// more参数
    				hideMore: true,
    				//表情定义
    				hideEmoji: true,
    				emojiList: [
    					[{
    						"url": "1.png",
    						alt: "[微笑]"
    					}, {
    						"url": "2.png",
    						alt: "[生气]"
    					}, {
    						"url": "3.png",
    						alt: "[坏笑]"
    					}, {
    						"url": "4.png",
    						alt: "[难受]"
    					}, {
    						"url": "5.png",
    						alt: "[困]"
    					}, {
    						"url": "6.png",
    						alt: "[偷看]"
    					}, {
    						"url": "7.png",
    						alt: "[难过]"
    					}, {
    						"url": "8.png",
    						alt: "[斜眼]"
    					}, {
    						"url": "9.png",
    						alt: "[委屈]"
    					}, {
    						"url": "10.png",
    						alt: "[害羞]"
    					}, {
    						"url": "11.png",
    						alt: "[裂开]"
    					}, {
    						"url": "12.png",
    						alt: "[偷笑]"
    					}, {
    						"url": "13.png",
    						alt: "[痛苦]"
    					}, {
    						"url": "14.png",
    						alt: "[白眼]"
    					}, {
    						"url": "15.png",
    						alt: "[丑]"
    					}, {
    						"url": "16.png",
    						alt: "[哇哇哭]"
    					}, {
    						"url": "17.png",
    						alt: "[笑嘻嘻]"
    					}, {
    						"url": "18.png",
    						alt: "[盯着你]"
    					}, {
    						"url": "19.png",
    						alt: "[啊哈]"
    					}, {
    						"url": "20.png",
    						alt: "[吃瓜]"
    					}, {
    						"url": "21.png",
    						alt: "[哦吼]"
    					}, {
    						"url": "22.png",
    						alt: "[哭死]"
    					}, {
    						"url": "23.png",
    						alt: "[打脸]"
    					}, {
    						"url": "24.png",
    						alt: "[斗鸡眼]"
    					}],
    					[{
    						"url": "25.png",
    						alt: "[发呆]"
    					}, {
    						"url": "26.png",
    						alt: "[憨笑]"
    					}, {
    						"url": "27.png",
    						alt: "[无语]"
    					}, {
    						"url": "28.png",
    						alt: "[鸡贼]"
    					}, {
    						"url": "29.png",
    						alt: "[大无语]"
    					}, {
    						"url": "30.png",
    						alt: "[哭吐了]"
    					}, {
    						"url": "31.png",
    						alt: "[呲牙笑]"
    					}, {
    						"url": "32.png",
    						alt: "[奸笑]"
    					}, {
    						"url": "33.png",
    						alt: "[啊啊啊]"
    					}, {
    						"url": "34.png",
    						alt: "[哈嘿]"
    					}, {
    						"url": "35.png",
    						alt: "[惊讶]"
    					}, {
    						"url": "36.png",
    						alt: "[指你]"
    					}, {
    						"url": "37.png",
    						alt: "[可爱型]"
    					}, {
    						"url": "38.png",
    						alt: "[快哭了]"
    					}, {
    						"url": "39.png",
    						alt: "[抠鼻屎]"
    					}, {
    						"url": "40.png",
    						alt: "[酷酷]"
    					}, {
    						"url": "41.png",
    						alt: "[笑汗]"
    					}, {
    						"url": "42.png",
    						alt: "[算命]"
    					}, {
    						"url": "43.png",
    						alt: "[红脸坏笑]"
    					}, {
    						"url": "44.png",
    						alt: "[委屈死了]"
    					}, {
    						"url": "45.png",
    						alt: "[爆炸]"
    					}, {
    						"url": "46.png",
    						alt: "[吐了]"
    					}, {
    						"url": "47.png",
    						alt: "[么么哒]"
    					}, {
    						"url": "48.png",
    						alt: "[吐血]"
    					}],
    					[{
    						"url": "49.png",
    						alt: "[面无表情]"
    					}, {
    						"url": "50.png",
    						alt: "[捂嘴吐]"
    					}, {
    						"url": "51.png",
    						alt: "[斜眼看]"
    					}, {
    						"url": "52.png",
    						alt: "[花痴]"
    					}, {
    						"url": "53.png",
    						alt: "[被打]"
    					}, {
    						"url": "54.png",
    						alt: "[瞌睡]"
    					}, {
    						"url": "55.png",
    						alt: "[冥想]"
    					}, {
    						"url": "56.png",
    						alt: "[俏皮]"
    					}, {
    						"url": "57.png",
    						alt: "[戳手委屈]"
    					}, {
    						"url": "58.png",
    						alt: "[端庄]"
    					}, {
    						"url": "59.png",
    						alt: "[emmm]"
    					}, {
    						"url": "60.png",
    						alt: "[欢呼]"
    					}, {
    						"url": "61.png",
    						alt: "[笑哭了]"
    					}, {
    						"url": "62.png",
    						alt: "[抱抱]"
    					}, {
    						"url": "63.png",
    						alt: "[闭眼笑]"
    					}, {
    						"url": "64.png",
    						alt: "[捂嘴微笑]"
    					}, {
    						"url": "65.png",
    						alt: "[笑哭2]"
    					}, {
    						"url": "66.png",
    						alt: "[笑嘻嘻]"
    					}, {
    						"url": "67.png",
    						alt: "[笑露齿]"
    					}, {
    						"url": "68.png",
    						alt: "[阴脸笑]"
    					}, {
    						"url": "69.png",
    						alt: "[问号脸]"
    					}, {
    						"url": "70.png",
    						alt: "[拜拜]"
    					}, {
    						"url": "71.png",
    						alt: "[难受2]"
    					}, {
    						"url": "72.png",
    						alt: "[傻笑2]"
    					}],
    					[{
    						"url": "73.png",
    						alt: "[爆炸2]"
    					}, {
    						"url": "74.png",
    						alt: "[二哈]"
    					}, {
    						"url": "75.png",
    						alt: "[二哈吐舌]"
    					}, {
    						"url": "76.png",
    						alt: "[狗狗笑哭]"
    					}, {
    						"url": "77.png",
    						alt: "[狗狗绿帽]"
    					}, {
    						"url": "78.png",
    						alt: "[狗狗张嘴]"
    					}, {
    						"url": "79.png",
    						alt: "[狗狗绿扇]"
    					}, {
    						"url": "80.png",
    						alt: "[狗狗]"
    					}, {
    						"url": "81.png",
    						alt: "[猫咪]"
    					}, {
    						"url": "82.png",
    						alt: "[牛啊]"
    					}, {
    						"url": "83.png",
    						alt: "[爱心]"
    					}, {
    						"url": "84.png",
    						alt: "[心裂开]"
    					}, {
    						"url": "85.png",
    						alt: "[玫瑰花]"
    					}, {
    						"url": "86.png",
    						alt: "[枯萎]"
    					}, {
    						"url": "87.png",
    						alt: "[棒]"
    					}, {
    						"url": "88.png",
    						alt: "[差]"
    					}, {
    						"url": "89.png",
    						alt: "[红药]"
    					}, {
    						"url": "90.png",
    						alt: "[绿药]"
    					}, {
    						"url": "91.png",
    						alt: "[抱拳]"
    					}, {
    						"url": "92.png",
    						alt: "[ok]"
    					}, {
    						"url": "93.png",
    						alt: "[pk]"
    					}, {
    						"url": "94.png",
    						alt: "[绿帽子]"
    					}, {
    						"url": "95.png",
    						alt: "[菜刀]"
    					}]
    				],
    				//表情图片图床名称 ,由于我上传的第三方图床名称会有改变,所以有此数据来做对应,您实际应用中应该不需要
    				onlineEmoji: {
    					"1.png": "1.png","2.png": "2.png","3.png": "3.png","4.png": "4.png","5.png": "5.png","6.png": "6.png",
    					"7.png": "7.png","8.png": "8.png","9.png": "9.png","10.png": "10.png","11.png": "11.png","12.png": "12.png",
    					
    					"13.png": "13.png","14.png": "14.png","15.png": "15.png","16.png": "16.png","17.png": "17.png","18.png": "18.png",
    					"19.png": "19.png","20.png": "20.png","21.png": "21.png","22.png": "22.png","23.png": "23.png","24.png": "24.png",
    					
    					"25.png": "25.png","26.png": "26.png","27.png": "27.png","28.png": "28.png","29.png": "29.png","30.png": "30.png",
    					"31.png": "31.png","32.png": "32.png","33.png": "33.png","34.png": "34.png","35.png": "35.png","36.png": "36.png",
    					
    					"37.png": "37.png","38.png": "38.png","39.png": "39.png","40.png": "40.png","41.png": "41.png","42.png": "42.png",
    					"43.png": "43.png","44.png": "44.png","45.png": "45.png","46.png": "46.png","47.png": "47.png","48.png": "48.png",
    					
    					"49.png": "49.png","50.png": "50.png","51.png": "51.png","52.png": "52.png","53.png": "53.png","54.png": "54.png",
    					"55.png": "55.png","56.png": "56.png","57.png": "57.png","58.png": "58.png","59.png": "59.png","60.png": "60.png",
    					
    					"61.png": "61.png","62.png": "62.png","63.png": "63.png","64.png": "64.png","65.png": "65.png","66.png": "66.png",
    					"67.png": "67.png","68.png": "68.png","69.png": "69.png","70.png": "70.png","71.png": "71.png","72.png": "72.png",
    					
    					"73.png": "73.png","74.png": "74.png","75.png": "75.png","76.png": "76.png","77.png": "77.png","78.png": "78.png",
    					"79.png": "79.png","80.png": "80.png","81.png": "81.png","82.png": "82.png","83.png": "83.png","84.png": "84.png",
    					
    					"85.png": "85.png","86.png": "86.png","87.png": "87.png","88.png": "88.png","89.png": "89.png","90.png": "90.png",
    					"91.png": "91.png","92.png": "92.png","93.png": "93","94.png": "94.png","95.png": "95.png"
    				},
    				//红包相关参数
    				windowsState: '',
    				redenvelopeData: {
    					rid: null, //红包ID
    					from: null,
    					face: null,
    					blessing: null,
    					money: null
    				}
    			};
    		},
    		onLoad(option) {
    			this.getMsgList();
    			//语音自然播放结束
    			this.AUDIO.onEnded((res) => {
    				this.playMsgid = null;
    			});
    			// #ifndef H5
    			//录音开始事件
    			this.RECORDER.onStart((e) => {
    				this.recordBegin(e);
    			})
    			//录音结束事件
    			this.RECORDER.onStop((e) => {
    				this.recordEnd(e);
    			})
    			// #endif
    		},
    		onShow() {
    			this.scrollTop = 9999999;
    
    			//模板借由本地缓存实现发红包效果,实际应用中请不要使用此方法。
    			//
    			uni.getStorage({
    				key: 'redEnvelopeData',
    				success: (res) => {
    					console.log(res.data);
    					let nowDate = new Date();
    					let lastid = this.msgList[this.msgList.length - 1].msg.id;
    					lastid++;
    					let row = {
    						type: "user",
    						msg: {
    							id: lastid,
    							type: "redEnvelope",
    							time: nowDate.getHours() + ":" + nowDate.getMinutes(),
    							userinfo: {
    								uid: 0,
    								username: "大黑哥",
    								face: "https://zhoukaiwen.com/img/kevinLogo.png"
    							},
    							content: {
    								blessing: res.data.blessing,
    								rid: Math.floor(Math.random() * 1000 + 1),
    								isReceived: false
    							}
    						}
    					};
    					this.screenMsg(row);
    					uni.removeStorage({
    						key: 'redEnvelopeData'
    					});
    				}
    			});
    		},
    		methods: {
    			// 接受消息(筛选处理)
    			screenMsg(msg) {
    				//从长连接处转发给这个方法,进行筛选处理
    				if (msg.type == 'system') {
    					// 系统消息
    					switch (msg.msg.type) {
    						case 'text':
    							this.addSystemTextMsg(msg);
    							break;
    						case 'redEnvelope':
    							this.addSystemRedEnvelopeMsg(msg);
    							break;
    					}
    				} else if (msg.type == 'user') {
    					// 用户消息
    					switch (msg.msg.type) {
    						case 'text':
    							this.addTextMsg(msg);
    							break;
    						case 'voice':
    							this.addVoiceMsg(msg);
    							break;
    						case 'img':
    							this.addImgMsg(msg);
    							break;
    						case 'redEnvelope':
    							this.addRedEnvelopeMsg(msg);
    							break;
    					}
    					console.log('用户消息');
    					//非自己的消息震动
    					if (msg.msg.userinfo.uid != this.myuid) {
    						console.log('振动');
    						uni.vibrateLong();
    					}
    				}
    				this.$nextTick(function() {
    					// 滚动到底
    					this.scrollToView = 'msg' + msg.msg.id
    				});
    			},
    
    			//触发滑动到顶部(加载历史信息记录)
    			loadHistory(e) {
    				if (this.isHistoryLoading) {
    					return;
    				}
    				this.isHistoryLoading = true; //参数作为进入请求标识,防止重复请求
    				this.scrollAnimation = false; //关闭滑动动画
    				let Viewid = this.msgList[0].msg.id; //记住第一个信息ID
    				//本地模拟请求历史记录效果
    				setTimeout(() => {
    					// 消息列表
    					let list = [{
    							type: "user",
    							msg: {
    								id: 1,
    								type: "text",
    								time: "12:56",
    								userinfo: {
    									uid: 0,
    									username: "大黑哥",
    									face: "https://zhoukaiwen.com/img/kevinLogo.png"
    								},
    								content: {
    									text: "web前端开发该怎么学习?"
    								}
    							}
    						},
    						{
    							type: "user",
    							msg: {
    								id: 2,
    								type: "text",
    								time: "12:57",
    								userinfo: {
    									uid: 1,
    									username: "售后客服008",
    									face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg"
    								},
    								content: {
    									text: "按照基本路线,从html、css、js三大基础开始,然后ajax、vue进阶学习,最后学习小程序、node、react。"
    								}
    							}
    						},
    						{
    							type: "user",
    							msg: {
    								id: 3,
    								type: "voice",
    								time: "12:59",
    								userinfo: {
    									uid: 1,
    									username: "售后客服008",
    									face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg"
    								},
    								content: {
    									url: "/static/voice/1.mp3",
    									length: "00:06"
    								}
    							}
    						},
    						{
    							type: "user",
    							msg: {
    								id: 4,
    								type: "voice",
    								time: "13:05",
    								userinfo: {
    									uid: 0,
    									username: "大黑哥",
    									face: "https://zhoukaiwen.com/img/kevinLogo.png"
    								},
    								content: {
    									url: "/static/voice/2.mp3",
    									length: "00:06"
    								}
    							}
    						},
    					]
    					// 获取消息中的图片,并处理显示尺寸
    					for (let i = 0; i < list.length; i++) {
    						if (list[i].type == 'user' && list[i].msg.type == "img") {
    							list[i].msg.content = this.setPicSize(list[i].msg.content);
    							this.msgImgList.unshift(list[i].msg.content.url);
    						}
    						list[i].msg.id = Math.floor(Math.random() * 1000 + 1);
    						this.msgList.unshift(list[i]);
    					}
    
    					//这段代码很重要,不然每次加载历史数据都会跳到顶部
    					this.$nextTick(function() {
    						this.scrollToView = 'msg' + Viewid; //跳转上次的第一行信息位置
    						this.$nextTick(function() {
    							this.scrollAnimation = true; //恢复滚动动画
    						});
    
    					});
    					this.isHistoryLoading = false;
    
    				}, 1000)
    			},
    			// 加载初始页面消息
    			getMsgList() {
    				// 消息列表
    				let list = [{
    						type: "system",
    						msg: {
    							id: 0,
    							type: "text",
    							content: {
    								text: "欢迎进入Kevin聊天室"
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 1,
    							type: "text",
    							time: "12:56",
    							userinfo: {
    								uid: 0,
    								username: "大黑哥",
    								face: "https://zhoukaiwen.com/img/kevinLogo.png"
    							},
    							content: {
    								text: "web前端开发该怎么学习?"
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 2,
    							type: "text",
    							time: "12:57",
    							userinfo: {
    								uid: 1,
    								username: "售后客服008",
    								face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg"
    							},
    							content: {
    								text: "按照基本路线,从html、css、js三大基础开始,然后ajax、vue进阶学习,最后学习小程序、node、react。"
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 3,
    							type: "voice",
    							time: "12:59",
    							userinfo: {
    								uid: 1,
    								username: "售后客服008",
    								face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg"
    							},
    							content: {
    								url: "/static/voice/1.mp3",
    								length: "00:06"
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 4,
    							type: "voice",
    							time: "13:05",
    							userinfo: {
    								uid: 0,
    								username: "大黑哥",
    								face: "https://zhoukaiwen.com/img/kevinLogo.png"
    							},
    							content: {
    								url: "/static/voice/2.mp3",
    								length: "00:06"
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 5,
    							type: "img",
    							time: "13:05",
    							userinfo: {
    								uid: 0,
    								username: "大黑哥",
    								face: "https://zhoukaiwen.com/img/kevinLogo.png"
    							},
    							content: {
    								url: "https://zhoukaiwen.com/img/Design/logo/psketch3.png",
    								w: 200,
    								h: 200
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 6,
    							type: "img",
    							time: "12:59",
    							userinfo: {
    								uid: 1,
    								username: "售后客服008",
    								face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg"
    							},
    							content: {
    								url: "https://zhoukaiwen.com/img/Design/pc/ybss_jt.png",
    								w: 1920,
    								h: 1080
    							}
    						}
    					},
    					{
    						type: "system",
    						msg: {
    							id: 7,
    							type: "text",
    							content: {
    								text: "欢迎进入Kevin聊天室"
    							}
    						}
    					},
    
    					{
    						type: "system",
    						msg: {
    							id: 9,
    							type: "redEnvelope",
    							content: {
    								text: "售后客服008领取了你的红包"
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 10,
    							type: "redEnvelope",
    							time: "12:56",
    							userinfo: {
    								uid: 0,
    								username: "大黑哥",
    								face: "https://zhoukaiwen.com/img/kevinLogo.png"
    							},
    							content: {
    								blessing: "恭喜发财,大吉大利,万事如意",
    								rid: 0,
    								isReceived: false
    							}
    						}
    					},
    					{
    						type: "user",
    						msg: {
    							id: 11,
    							type: "redEnvelope",
    							time: "12:56",
    							userinfo: {
    								uid: 1,
    								username: "售后客服008",
    								face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg"
    							},
    							content: {
    								blessing: "恭喜发财",
    								rid: 1,
    								isReceived: false
    							}
    						}
    					},
    				]
    				// 获取消息中的图片,并处理显示尺寸
    				for (let i = 0; i < list.length; i++) {
    					if (list[i].type == 'user' && list[i].msg.type == "img") {
    						list[i].msg.content = this.setPicSize(list[i].msg.content);
    						this.msgImgList.push(list[i].msg.content.url);
    					}
    				}
    				this.msgList = list;
    				// 滚动到底部
    				this.$nextTick(function() {
    					//进入页面滚动到底部
    					this.scrollTop = 9999;
    					this.$nextTick(function() {
    						this.scrollAnimation = true;
    					});
    
    				});
    			},
    			//处理图片尺寸,如果不处理宽高,新进入页面加载图片时候会闪
    			setPicSize(content) {
    				// 让图片最长边等于设置的最大长度,短边等比例缩小,图片控件真实改变,区别于aspectFit方式。
    				let maxW = uni.upx2px(350); //350是定义消息图片最大宽度
    				let maxH = uni.upx2px(350); //350是定义消息图片最大高度
    				if (content.w > maxW || content.h > maxH) {
    					let scale = content.w / content.h;
    					content.w = scale > 1 ? maxW : maxH * scale;
    					content.h = scale > 1 ? maxW / scale : maxH;
    				}
    				return content;
    			},
    
    			//更多功能(点击+弹出) 
    			showMore() {
    				this.isVoice = false;
    				this.hideEmoji = true;
    				if (this.hideMore) {
    					this.hideMore = false;
    					this.openDrawer();
    				} else {
    					this.hideDrawer();
    				}
    			},
    			// 打开抽屉
    			openDrawer() {
    				this.popupLayerClass = 'showLayer';
    			},
    			// 隐藏抽屉
    			hideDrawer() {
    				this.popupLayerClass = '';
    				setTimeout(() => {
    					this.hideMore = true;
    					this.hideEmoji = true;
    				}, 150);
    			},
    			// 选择图片发送
    			chooseImage() {
    				this.getImage('album');
    			},
    			//拍照发送
    			camera() {
    				this.getImage('camera');
    			},
    			//发红包
    			handRedEnvelopes() {
    				uni.navigateTo({
    					url: 'hand/hand'
    				});
    				this.hideDrawer();
    			},
    			//选照片 or 拍照
    			getImage(type) {
    				this.hideDrawer();
    				uni.chooseImage({
    					sourceType: [type],
    					sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
    					success: (res) => {
    						for (let i = 0; i < res.tempFilePaths.length; i++) {
    							uni.getImageInfo({
    								src: res.tempFilePaths[i],
    								success: (image) => {
    									console.log(image.width);
    									console.log(image.height);
    									let msg = {
    										url: res.tempFilePaths[i],
    										w: image.width,
    										h: image.height
    									};
    									this.sendMsg(msg, 'img');
    								}
    							});
    						}
    					}
    				});
    			},
    			// 选择表情
    			chooseEmoji() {
    				this.hideMore = true;
    				if (this.hideEmoji) {
    					this.hideEmoji = false;
    					this.openDrawer();
    				} else {
    					this.hideDrawer();
    				}
    			},
    			//添加表情
    			addEmoji(em) {
    				this.textMsg += em.alt;
    			},
    
    			//获取焦点,如果不是选表情ing,则关闭抽屉
    			textareaFocus() {
    				if (this.popupLayerClass == 'showLayer' && this.hideMore == false) {
    					this.hideDrawer();
    				}
    			},
    			// 发送文字消息
    			sendText() {
    				this.hideDrawer(); //隐藏抽屉
    				if (!this.textMsg) {
    					return;
    				}
    				let content = this.replaceEmoji(this.textMsg);
    				let msg = {
    					text: content
    				}
    				this.sendMsg(msg, 'text');
    				this.textMsg = ''; //清空输入框
    			},
    			//替换表情符号为图片
    			replaceEmoji(str) {
    				let replacedStr = str.replace(/\[([^(\]|\[)]*)\]/g, (item, index) => {
    					
    					console.log("str: " + str);
    					console.log("index: " + index);
    					console.log("item: " + item);
    					
    					for (let i = 0; i < this.emojiList.length; i++) {
    						let row = this.emojiList[i];
    						for (let j = 0; j < row.length; j++) {
    							let EM = row[j];
    							if (EM.alt == item) {
    								//在线表情路径,图文混排必须使用网络路径,请上传一份表情到你的服务器后再替换此路径 
    								//比如你上传服务器后,你的100.gif路径为https://www.xxx.com/emoji/100.gif 则替换onlinePath填写为https://www.xxx.com/emoji/
    								let onlinePath = 'https://zhoukaiwen.com/img/icon/emojj1/'
    								let imgstr = '+ onlinePath + this.onlineEmoji[EM.url] +
    									'">';
    								console.log("imgstr: " + imgstr);
    								return imgstr;
    							}
    						}
    					}
    				});
    				return '
    ' + replacedStr + '
    '
    ; }, // 发送消息 sendMsg(content, type) { //实际应用中,此处应该提交长连接,模板仅做本地处理。 var nowDate = new Date(); let lastid = this.msgList[this.msgList.length - 1].msg.id; lastid++; let msg = { type: 'user', msg: { id: lastid, time: nowDate.getHours() + ":" + nowDate.getMinutes(), type: type, userinfo: { uid: 0, username: "大黑哥", face: "https://zhoukaiwen.com/img/kevinLogo.png" }, content: content } } // 发送消息 this.screenMsg(msg); // 定时器模拟对方回复,三秒 setTimeout(() => { lastid = this.msgList[this.msgList.length - 1].msg.id; lastid++; msg = { type: 'user', msg: { id: lastid, time: nowDate.getHours() + ":" + nowDate.getMinutes(), type: type, userinfo: { uid: 1, username: "售后客服008", face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg" }, content: content } } // 本地模拟发送消息 this.screenMsg(msg); }, 3000) }, // 添加文字消息到列表 addTextMsg(msg) { this.msgList.push(msg); }, // 添加语音消息到列表 addVoiceMsg(msg) { this.msgList.push(msg); }, // 添加图片消息到列表 addImgMsg(msg) { msg.msg.content = this.setPicSize(msg.msg.content); this.msgImgList.push(msg.msg.content.url); this.msgList.push(msg); }, addRedEnvelopeMsg(msg) { this.msgList.push(msg); }, // 添加系统文字消息到列表 addSystemTextMsg(msg) { this.msgList.push(msg); }, // 添加系统红包消息到列表 addSystemRedEnvelopeMsg(msg) { this.msgList.push(msg); }, // 打开红包 openRedEnvelope(msg, index) { let rid = msg.content.rid; uni.showLoading({ title: '加载中...' }); console.log("index: " + index); //模拟请求服务器效果 setTimeout(() => { //加载数据 if (rid == 0) { this.redenvelopeData = { rid: 0, //红包ID from: "大黑哥", face: "https://zhoukaiwen.com/img/qdpz/face/face.jpg", blessing: "恭喜发财,大吉大利", money: "已领完" } } else { this.redenvelopeData = { rid: 1, //红包ID from: "售后客服008", face: "https://zhoukaiwen.com/img/qdpz/face/face_2.jpg", blessing: "恭喜发财", money: "0.01" } if (!msg.content.isReceived) { // {type:"system",msg:{id:8,type:"redEnvelope",content:{text:"你领取了售后客服008的红包"}}}, this.sendSystemMsg({ text: "你领取了" + (msg.userinfo.uid == this.myuid ? "自己" : msg.userinfo .username) + "的红包" }, 'redEnvelope'); console.log("this.msgList[index]: " + JSON.stringify(this.msgList[index])); this.msgList[index].msg.content.isReceived = true; } } uni.hideLoading(); this.windowsState = 'show'; }, 200) }, // 关闭红包弹窗 closeRedEnvelope() { this.windowsState = 'hide'; setTimeout(() => { this.windowsState = ''; }, 200) }, sendSystemMsg(content, type) { let lastid = this.msgList[this.msgList.length - 1].msg.id; lastid++; let row = { type: "system", msg: { id: lastid, type: type, content: content } }; this.screenMsg(row) }, //领取详情 toDetails(rid) { uni.navigateTo({ url: 'details/details?rid=' + rid }) }, // 预览图片 showPic(msg) { uni.previewImage({ indicator: "none", current: msg.content.url, urls: this.msgImgList }); }, // 播放语音 playVoice(msg) { this.playMsgid = msg.id; this.AUDIO.src = msg.content.url; this.$nextTick(function() { this.AUDIO.play(); }); }, // 录音开始 voiceBegin(e) { if (e.touches.length > 1) { return; } this.initPoint.Y = e.touches[0].clientY; this.initPoint.identifier = e.touches[0].identifier; this.RECORDER.start({ format: "mp3" }); //录音开始, }, //录音开始UI效果 recordBegin(e) { this.recording = true; this.voiceTis = '松开 结束'; this.recordLength = 0; this.recordTimer = setInterval(() => { this.recordLength++; }, 1000) }, // 录音被打断 voiceCancel() { this.recording = false; this.voiceTis = '按住 说话'; this.recordTis = '手指上滑 取消发送' this.willStop = true; //不发送录音 this.RECORDER.stop(); //录音结束 }, // 录音中(判断是否触发上滑取消发送) voiceIng(e) { if (!this.recording) { return; } let touche = e.touches[0]; //上滑一个导航栏的高度触发上滑取消发送 if (this.initPoint.Y - touche.clientY >= uni.upx2px(100)) { this.willStop = true; this.recordTis = '松开手指 取消发送' } else { this.willStop = false; this.recordTis = '手指上滑 取消发送' } }, // 结束录音 voiceEnd(e) { if (!this.recording) { return; } this.recording = false; this.voiceTis = '按住 说话'; this.recordTis = '手指上滑 取消发送' this.RECORDER.stop(); //录音结束 }, //录音结束(回调文件) recordEnd(e) { clearInterval(this.recordTimer); if (!this.willStop) { console.log("e: " + JSON.stringify(e)); let msg = { length: 0, url: e.tempFilePath } let min = parseInt(this.recordLength / 60); let sec = this.recordLength % 60; min = min < 10 ? '0' + min : min; sec = sec < 10 ? '0' + sec : sec; msg.length = min + ':' + sec; this.sendMsg(msg, 'voice'); } else { console.log('取消发送录音'); } this.willStop = false; }, // 切换语音/文字输入 switchVoice() { this.hideDrawer(); this.isVoice = this.isVoice ? false : true; }, discard() { return; } } } </script>
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737
    • 738
    • 739
    • 740
    • 741
    • 742
    • 743
    • 744
    • 745
    • 746
    • 747
    • 748
    • 749
    • 750
    • 751
    • 752
    • 753
    • 754
    • 755
    • 756
    • 757
    • 758
    • 759
    • 760
    • 761
    • 762
    • 763
    • 764
    • 765
    • 766
    • 767
    • 768
    • 769
    • 770
    • 771
    • 772
    • 773
    • 774
    • 775
    • 776
    • 777
    • 778
    • 779
    • 780
    • 781
    • 782
    • 783
    • 784
    • 785
    • 786
    • 787
    • 788
    • 789
    • 790
    • 791
    • 792
    • 793
    • 794
    • 795
    • 796
    • 797
    • 798
    • 799
    • 800
    • 801
    • 802
    • 803
    • 804
    • 805
    • 806
    • 807
    • 808
    • 809
    • 810
    • 811
    • 812
    • 813
    • 814
    • 815
    • 816
    • 817
    • 818
    • 819
    • 820
    • 821
    • 822
    • 823
    • 824
    • 825
    • 826
    • 827
    • 828
    • 829
    • 830
    • 831
    • 832
    • 833
    • 834
    • 835
    • 836
    • 837
    • 838
    • 839
    • 840
    • 841
    • 842
    • 843
    • 844
    • 845
    • 846
    • 847
    • 848
    • 849
    • 850
    • 851
    • 852
    • 853
    • 854
    • 855
    • 856
    • 857
    • 858
    • 859
    • 860
    • 861
    • 862
    • 863
    • 864
    • 865
    • 866
    • 867
    • 868
    • 869
    • 870
    • 871
    • 872
    • 873
    • 874
    • 875
    • 876
    • 877
    • 878
    • 879
    • 880
    • 881
    • 882
    • 883
    • 884
    • 885
    • 886
    • 887
    • 888
    • 889
    • 890
    • 891
    • 892
    • 893
    • 894
    • 895
    • 896
    • 897
    • 898
    • 899
    • 900
    • 901
    • 902
    • 903
    • 904
    • 905
    • 906
    • 907
    • 908
    • 909
    • 910
    • 911
    • 912
    • 913
    • 914
    • 915
    • 916
    • 917
    • 918
    • 919
    • 920
    • 921
    • 922
    • 923
    • 924
    • 925
    • 926
    • 927
    • 928
    • 929
    • 930
    • 931
    • 932
    • 933
    • 934
    • 935
    • 936
    • 937
    • 938
    • 939
    • 940
    • 941
    • 942
    • 943
    • 944
    • 945
    • 946
    • 947
    • 948
    • 949
    • 950
    • 951
    • 952
    • 953
    • 954
    • 955
    • 956
    • 957
    • 958
    • 959
    • 960
    • 961
    • 962
    • 963
    • 964
    • 965
    • 966
    • 967
    • 968
    • 969
    • 970
    • 971
    • 972
    • 973
    • 974
    • 975
    • 976
    • 977
    • 978
    • 979
    • 980
    • 981
    • 982
    • 983
    • 984
    • 985
    • 986
    • 987
    • 988
    • 989
    • 990
    • 991
    • 992
    • 993
    • 994
    • 995
    • 996
    • 997
    • 998
    • 999
    • 1000
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133

    代码——其他部分

    其他部分代码包含:图标+css+红包系列等。由于内容过多,暂不提供,如有需要,可以评论区留言,我会发送到指定邮箱。

    完成!!!多多积累,多多收获!!!

    以下内容为补充内容,可忽略。

    聊天室(chat room)是一个网上空间,为了保证谈话的焦点,聊天室通常有一定的谈话主题。任何一个联入Internet、使用正确的聊天软件,并且渴望谈论的人都可以享受其乐趣。聊天室会话是自然会话在信息时代的延伸。合作原则解释不了聊天室会话的诸多问题,没有其适用性。
    聊天室有语音聊天室和视频聊天室等分类。

    网络聊天室通常直称聊天室,是一种人们可以在线交谈的网络论坛,在同一聊天室的人们通过广播消息进行实时交谈。聊天室可以建立在即时通讯软件(如MSN Messenger、QQ、Anychat)、P2P软件、万维网(如 Halapo,Meebo ) 等基础上,万维网方式更为普通和种类繁多,交谈的手段不局限于文本,更包括语音、视频。通常聊天室是按照房间或频道为单位的,在同一房间或频道的网人可以实时地广播和阅读公开消息。一般情况下,与其它网络论坛、即时通讯不同的是,聊天室不保存聊天记录。聊天室基本原理是,抛开CGI和WWW服务器,根据HTML规范,接收到浏览器的请求以后,模仿WWW服务器的响应,将聊天内容发回浏览器。在浏览器看来就像浏览一个巨大的页面一样始终处于页面联接状态, 这就是一个专门的聊天服务器,一个简化了的WWW服务器。
    聊天者只需在想要进入的聊天室注册自己的用户名、密码后,登录进入某一个聊天室(大多数网站都有很多的聊天室)。在聊天室里,一般都会列出正在聊天人的名单,并且对新人进入进行提示。聊天者在一个对话框里留言,写下的话会立刻被其他人看到,并收到回应。用户也可以在聊天室内看别人对话,而自己不说话,这种行为一般被称作“潜水”。由于聊天室里的话语都是立即可见的,所以需要一个管理员来维持秩序。管理员会制定一些基本的规章制度让大家来遵守。比如,当聊天者刚进入聊天室的时候,应该向大家介绍自己;当你向某人说话时,应该明确指明说话对象;举报一些恶意说废话者,他们反复说同样的话,使对方经常滚屏。聊天室的话题涉及方方面面,如,经典电影、爱尔兰历史、警察暴行、精神食粮。有的网站,如Yahoo,提供分专题的聊天室。有的网站,如MSN,可以指导用户创建自己的话题聊天室。

  • 相关阅读:
    Springboot之邮件发送(内附源码)
    Java集合(一)
    梦开始的地方 —— C语言指针进阶
    一个程序员的中秋节碎碎念
    黑寡妇(BWO)优化算法(Matlab代码实现)
    使用定时器消除抖动
    【文件I/O】标准IO:库函数
    企业微信自建集成应用——踩坑记录(二)
    vue与react,angular的区别
    C#:实现图像相似度算法​(附完整源码)
  • 原文地址:https://blog.csdn.net/yehaocheng520/article/details/132853707