websocket-global.uvue 4.8 KB
Newer Older
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
1
<template>
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3 4 5
  <view>
    <page-head title="websocket通讯示例"></page-head>
    <view class="uni-padding-wrap">
      <view class="uni-btn-v">
Y
yurj26 已提交
6
        <text class="websocket-msg">{{ showMsg }}</text>
DCloud-WZF's avatar
DCloud-WZF 已提交
7 8 9
        <button class="uni-btn-v" type="primary" @click="connect">
          连接websocket服务
        </button>
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
10
        <button class="uni-btn-v" v-show="connected" type="primary" @click="send">
DCloud-WZF's avatar
DCloud-WZF 已提交
11 12 13 14 15
          发送一条消息
        </button>
        <button class="uni-btn-v" type="primary" @click="close">
          断开websocket服务
        </button>
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
16
        <text class="websocket-tips">发送消息后会收到一条服务器返回的消息(与发送的消息内容一致)</text>
DCloud-WZF's avatar
DCloud-WZF 已提交
17 18 19
      </view>
    </view>
  </view>
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
20 21
</template>

Y
yurj26 已提交
22
<script lang="uts">
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
23 24 25 26 27 28 29 30
  export default {
    data() {
      return {
        connected: false,
        connecting: false,
        msg: '',
        roomId: '',
        platform: '',
DCloud-WZF's avatar
DCloud-WZF 已提交
31 32
      }
    },
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
33 34 35 36 37 38 39 40 41 42 43
    computed: {
      showMsg() : string {
        if (this.connected) {
          if (this.msg.length > 0) {
            return '收到消息:' + this.msg
          } else {
            return '等待接收消息'
          }
        } else {
          return '尚未连接'
        }
DCloud-WZF's avatar
DCloud-WZF 已提交
44
      },
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
45 46 47 48 49 50 51 52 53 54
    },
    onLoad() {
      this.platform = uni.getSystemInfoSync().platform
    },
    onUnload() {
      uni.closeSocket({
        code: 1000,
        reason: 'close reason from client',
        success: (res : any) => {
          console.log('uni.closeSocket success', res)
DCloud-WZF's avatar
DCloud-WZF 已提交
55
        },
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
56 57
        fail: (err : any) => {
          console.log('uni.closeSocket fail', err)
DCloud-WZF's avatar
DCloud-WZF 已提交
58
        },
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
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
      } as CloseSocketOptions)
      uni.hideLoading()
    },
    methods: {
      connect() {
        if (this.connected || this.connecting) {
          uni.showModal({
            content: '正在连接或者已经连接,请勿重复连接',
            showCancel: false,
          })
          return
        }
        this.connecting = true
        uni.showLoading({
          title: '连接中...',
        })
        uni.connectSocket({
          url: 'ws://websocket.dcloud.net.cn',
          success: (res : any) => {
            // 这里是接口调用成功的回调,不是连接成功的回调,请注意
            console.log('uni.connectSocket success', res)
          },
          fail: (err : any) => {
            // 这里是接口调用失败的回调,不是连接失败的回调,请注意
            console.log('uni.connectSocket fail', err)
          },
        })
        uni.onSocketOpen((res) => {
DCloud-WZF's avatar
DCloud-WZF 已提交
87 88 89
          this.connecting = false
          this.connected = true
          uni.hideLoading()
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
90

DCloud-WZF's avatar
DCloud-WZF 已提交
91 92 93 94 95
          uni.showToast({
            icon: 'none',
            title: '连接成功',
          })
          console.log('onOpen', res)
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
96 97
        })
        uni.onSocketError((err) => {
DCloud-WZF's avatar
DCloud-WZF 已提交
98 99 100
          this.connecting = false
          this.connected = false
          uni.hideLoading()
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
101

DCloud-WZF's avatar
DCloud-WZF 已提交
102 103 104 105 106
          uni.showModal({
            content: '连接失败,可能是websocket服务不可用,请稍后再试',
            showCancel: false,
          })
          console.log('onError', err)
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
107 108
        })
        uni.onSocketMessage((res) => {
DCloud-WZF's avatar
DCloud-WZF 已提交
109 110
          this.msg = res.data as string
          console.log('onMessage', res)
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
111 112
        })
        uni.onSocketClose((res) => {
DCloud-WZF's avatar
DCloud-WZF 已提交
113 114 115
          this.connected = false
          this.msg = ''
          console.log('onClose', res)
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
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
        })
      },
      send() {
        uni.sendSocketMessage({
          data:
            'from ' +
            this.platform +
            ' : ' +
            parseInt((Math.random() * 10000).toString()).toString(),
          success: (res : any) => {
            console.log(res)
          },
          fail: (err : any) => {
            console.log(err)
          },
        } as SendSocketMessageOptions)
      },
      close() {
        uni.closeSocket({
          code: 1000,
          reason: 'close reason from client',
          success: (res : any) => {
            console.log('uni.closeSocket success', res)
          },
          fail: (err : any) => {
            console.log('uni.closeSocket fail', err)
          },
        } as CloseSocketOptions)
      },
DCloud-WZF's avatar
DCloud-WZF 已提交
145
    },
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
146
  }
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
147 148 149
</script>

<style>
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
150 151 152
  .uni-btn-v {
    padding: 10rpx 0;
  }
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
153

taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
154 155 156
  .uni-btn-v {
    margin: 20rpx 0;
  }
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
157

taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
158 159 160 161 162 163 164
  .websocket-room {
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-bottom: solid 1px #dddddd;
    margin-bottom: 20px;
  }
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
165

taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
166 167 168 169 170 171 172
  .websocket-msg {
    padding: 40px 0px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    color: #666666;
  }
taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
173

taohebin@dcloud.io's avatar
taohebin@dcloud.io 已提交
174 175 176 177 178 179 180 181
  .websocket-tips {
    padding: 40px 0px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
  }
</style>