export const ellipsisFileName = function(str) {
const strLength =
let data = []
if (strLength > 8) {
((0, strLength - 8))
((-8))
} else {
(str)
}
return data
}
首先拿到字符串的长度 , 如果长度>8的话 , 把字符串分成两块 , 放到新数组中
export const ellipsisFileName = function(str) {
const strLength =
let data = []
if (strLength > 8) {
((0, strLength - 8))
((-8))
} else {
(str)
}
return data
}
首先拿到字符串的长度 , 如果长度>8的话 , 把字符串分成两块 , 放到新数组中