@microsoft/signalr与vue 发布订阅

安装@microsoft/signalr

yarn add @microsoft/signalr

APP.vue

<script>
import * as signalR from '@microsoft/signalr'

const hubUrl = 'http://192.168.1.209:5001/ServerHub'

// .net core 版本中默认不会自动重连,需手动调用 withAutomaticReconnect
const connection = new signalR.HubConnectionBuilder()
  .withAutomaticReconnect()// 断线自动重连
  .withUrl(hubUrl, {
    skipNegotiation: true,
    transport: signalR.HttpTransportType.WebSockets
  }) // 传递参数Query["access_token"]
  .configureLogging(signalR.LogLevel.Information)
  .build()

// 启动
connection.start().catch(err => {
  console.log(err)
})

// 自动重连成功后的处理
connection.onreconnected(connectionId => {
  console.log(connectionId)
})

export default {
  created () {
    if (window.localStorage.getItem('user_info')) {
      this.$store.replaceState(Object.assign({}, this.$store.state, JSON.parse(window.localStorage.getItem('user_info'))))
    }
  },
  mounted () {
    const _this = this
    // 调用后端方法 SendMessageResponse 接收定时数据
    connection.on('SendMessageResponse', function (data) {
      //   if(data.state==200)
      _this.remsg = _this.remsg + '
'
+ '接收数据:' + data console.log('接受的数据:', data) }) // 调用后端方法 SendMessage 接受自己人发送消息 // connection.on("SendMessage", function(data) { // // if(data.state==200) // _this.remsg = _this.remsg + "
" + data.data.userName + ":" + data.msg;
// }); // 调用后端方法 ConnectResponse 接收连接成功 connection.on('ConnectResponse', function (data) { // if(data.state==200) _this.remsg = _this.remsg + '
'
+ '连接:' + data }) }, methods: { handle () { if (this.msg.trim() === '') { alert('不能发送空白消息') return } // 调用后端方法 SendMessage 传入参数 connection.invoke('SendMessage', this.user, this.msg) this.msg = '' } } } </script>

完善中。。。

你可能感兴趣的:(vue,microsoft,vue.js,javascript)