'f'
mh-two-thousand-and-two
2024-04-12 26f2711ef9461961fb953e2b497bd314ef95e345
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
const method = {
  OPTIONS: 'OPTIONS',
  GET: 'GET',
  HEAD: 'HEAD',
  POST: 'POST',
  PUT: 'PUT',
  DELETE: 'DELETE',
  TRACE: 'TRACE',
  CONNECT: 'CONNECT'
}
export const connectSocket = {
  url: {
    type: String,
    required: true
  },
  header: {
    type: Object,
    validator (value, params) {
      params.header = value || {}
    }
  },
  method: {
    type: String,
    validator (value, params) {
      value = (value || '').toUpperCase()
      params.method = Object.values(method).indexOf(value) < 0 ? method.GET : value
    }
  },
  protocols: {
    // 微信文档虽然写的是数组,但是可以正常传递字符串
    type: [Array, String],
    validator (value, params) {
      if (typeof value === 'string') {
        value = [value]
      }
      params.protocols = (value || []).filter(str => typeof str === 'string')
    }
  }
}
export const sendSocketMessage = {
  data: {
    type: [String, ArrayBuffer]
  }
}
export const closeSocket = {
  code: {
    type: Number
  },
  reason: {
    type: String
  }
}