当前位置:   article > 正文

Nuxt.js + SockJs 实现 webSocket 订单实时消息 语音播报_nuxt websocket

nuxt websocket
  1. 随着项目的模块化,需要把websocket相关的功能独自创建一个模块进行引入使用
  2. 1,在plugins新建sockjs.js文件,项目要求是所有页面下都可以实时通信,所以在nuxt.config.js全局引入了

2,在sockjs.js文件中写入相关的代码
  1. npm install sockjs-client
  2. npm install stompjs

代码贴上:

  1. import SockJS from 'sockjs-client'
  2. import Stomp from 'stompjs'
  3. import { getUser } from '../mixins'
  4. import { Notification } from 'element-ui'
  5. export const strict = true
  6. export async function connectionSocket () {
  7. let _self = window.$nuxt // 获取vue实例
  8. let userInfo = await getUser()
  9. let socket = new SockJS('http://xxxxxxxxxxxxx/orderWebSocket')
  10. let stompClient = Stomp.over(socket)
  11. let headers = {
  12. pharmacyId: userInfo.shopId
  13. }
  14. stompClient.connect(headers, () => {
  15. stompClient.subscribe('/user/topic/orderNotice', (msg) => {
  16. console.log(JSON.parse(msg.body))
  17. // 语音播报 mp3地址必须写绝对地址
  18. new Audio('http://xxxxxxxxxxxxxxxxxx/tips.mp3').play()
  19. let orderMsg = JSON.parse(msg.body).responseMessage
  20. let orderId = JSON.parse(msg.body).orderNoticeDTO.orderId
  21. const h = _self.$createElement
  22. let dialogArr = []
  23. dialogArr.push(Notification({
  24. message: h('p', null, [
  25. h('span', null, orderMsg),
  26. h('a', {
  27. on: {
  28. click: () => {
  29. _self.$router.push({
  30. path: '/transaction/order/detail',
  31. query: {
  32. id: orderId
  33. }
  34. }) // 详情跳转
  35. for (let i = 0; i < dialogArr.length; i++) {
  36. dialogArr[i].close() // 关闭当前
  37. }
  38. }
  39. }
  40. }, ' 点击查看')
  41. ]),
  42. position: 'bottom-right',
  43. type: 'info',
  44. duration: 0
  45. })
  46. )
  47. }, headers)
  48. }, (err) => {
  49. console.log('失败')
  50. console.log(err)
  51. })
  52. }

3,在页面需要初始化的地方引入该js文件即可

  1. import { connectionSocket } from '../plugins/sockjs' // 引入
  2. connectionSocket() // 使用

######  新订单提示音的生成   ######

1)“文本转音频”的小程序,将文字变成了语音,效果非常好,还可以选择声优

2)百度 AI 开发平台的合成效果   语音合成_在线语音合成_离线语音合成-百度AI开放平台

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/971356
推荐阅读
相关标签
  

闽ICP备14008679号