ludc
2024-03-18 32ebe84d704f32842fdc8b5b23038dccb67234ff
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
/**
 * 通用工具类
 */
export default class func {
  /**
   * 不为空
   * @param val
   * @returns {boolean}
   * 不能判断数组和对象 如判断"null"、"undefined"会返回不为空
   */
  static notEmpty(val) {
    return !this.isEmpty(val);
  }
 
  /**
   * 是否为定义
   * @param val
   * @returns {boolean}
   */
  static isUndefined(val) {
    return val === null || typeof val === 'undefined';
  }
 
  /**
   * 为空
   * @param val
   * @returns {boolean}
   * 不能判断数组和对象 如判断"null"、"undefined"会返回不为空
   */
  static isEmpty(val) {
    if (
      val === null ||
      typeof val === 'undefined' ||
      (typeof val === 'string' && val === '' && val !== 'undefined')
    ) {
      return true;
    }
    return false;
  }
 
  /**
   * 强转int型
   * @param val
   * @param defaultValue
   * @returns {number}
   */
  static toInt(val, defaultValue) {
    if (this.isEmpty(val)) {
      return defaultValue === undefined ? -1 : defaultValue;
    }
    const num = parseInt(val, 0);
    return Number.isNaN(num) ? (defaultValue === undefined ? -1 : defaultValue) : num;
  }
 
  /**
   * Json强转为Form类型
   * @param obj
   * @returns {FormData}
   */
  static toFormData(obj) {
    const data = new FormData();
    Object.keys(obj).forEach(key => {
      data.append(key, Array.isArray(obj[key]) ? obj[key].join(',') : obj[key]);
    });
    return data;
  }
 
  /**
   * date类转为字符串格式
   * @param date
   * @param format
   * @returns {null}
   */
  static format(date, format = 'YYYY-MM-DD HH:mm:ss') {
    return date ? date.format(format) : null;
  }
 
  /**
   * ts日期格式处理
   * @param {要处理的日期} thisDate
   * @returns
   */
  static formattedDateTime(thisDate) {
    const date = new Date(thisDate);
    const year = date.getFullYear();
    const month = (date.getMonth() + 1).toString().padStart(2, '0');
    const day = date.getDate().toString().padStart(2, '0');
    const hours = date.getHours().toString().padStart(2, '0');
    const minutes = date.getMinutes().toString().padStart(2, '0');
    const seconds = date.getSeconds().toString().padStart(2, '0');
    const milliseconds = date.getMilliseconds().toString().padStart(3, '0');
    return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}.${milliseconds}`;
  }
 
  /**
   * 根据逗号联合
   * @param arr
   * @returns {string}
   */
  static join(arr) {
    return arr ? arr.join(',') : '';
  }
 
  /**
   * 根据逗号分隔
   * @param str
   * @returns {string}
   */
  static split(str) {
    return str ? String(str).split(',') : '';
  }
 
  /**
   * 转换空字符串
   * @param str
   * @returns {string|*}
   */
  static toStr(str) {
    if (typeof str === 'undefined' || str === null) {
      return "";
    }
    return str;
  }
  /**
   * 判断是否为对象并不为空对象
   * @param value
   * @returns {Boolean}
   */
  static isValuableObj(value) {
    return typeof value === 'object' && value !== null && Object.keys(value).length > 0;
  }
  /**
   * 获取流文件进行文件下
   * @param value
   * @returns {Boolean}
   */
  static downloadFileByBlobHandler(res) {
    if(res.headers['content-disposition']){
      const fileNames = res.headers['content-disposition'].split(";");
      let characterSet = fileNames[2].split("filename*=")[1];
      let fileName = decodeURI(fileNames[1].split("filename=")[1],characterSet);  // 下载的文件名
      let blob = new Blob([res.data], {
        type: res.data.type + ";charset=utf-8",
      });
      const url = URL.createObjectURL(blob); // 生成下载链接
      const link = document.createElement("a");
      link.href = url;
      link.download = fileName; // 指定文件名和格式
      document.body.appendChild(link); // 添加下载链接到页面
      link.click(); // 触发下载
      document.body.removeChild(link); //删除下载
      window.URL.revokeObjectURL(url); //释放掉blob对象
    }
  }
 
  /**
   * 获取流文件进行文件下
   * @param value
   * @returns {Boolean}
   */
  static downloadFileByBlob(blobData, name) {
    const url = URL.createObjectURL(blobData); // 生成下载链接
    const link = document.createElement("a");
    link.href = url;
    link.download = name; // 指定文件名和格式
    document.body.appendChild(link); // 添加下载链接到页面
    link.click(); // 触发下载
    document.body.removeChild(link); //删除下载
  }
 
  /**
   * 将数组中的属性拼接成字符串
   * @param {数组} array
   * @param {属性} attr
   * @returns
   */
  static joinedString(array,attr) {
    return array.reduce((accumulator, item) => {
      return accumulator + (accumulator ? ',' : '') + item[attr];
    }, '');
  }
 
  /**
   * 比对数组中的对象的某个属性是否全部一致
   * @param {数组} array
   * @param {属性} attr
   * @returns 一致返回fasle,不一致返回true
   */
  static isAttrInconsistent(array,attr) {
    return Object.values(array).some((item, index, array) => {
      return item[attr] !== array[0][attr];
    });
  }
 
}