index.ts
2.23 KB
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
// @ts-nocheck
import { isString } from '../isString'
import { isNumeric } from '../isNumeric'
/**
* 单位转换函数,将字符串数字或带有单位的字符串转换为数字
* @param value 要转换的值,可以是字符串数字或带有单位的字符串
* @returns 转换后的数字,如果无法转换则返回0
*/
// #ifndef UNI-APP-X && APP
export function unitConvert(value : string | number | null | undefined, base: number = 0) : number {
// 如果是字符串数字
if (isNumeric(value)) {
return Number(value);
}
// 如果有单位
if (isString(value)) {
const reg = /^-?([0-9]+)?([.]{1}[0-9]+){0,1}(em|rpx|px|%)$/g;
const results = reg.exec(value);
if (!value || !results) {
return 0;
}
const unit = results[3];
const _value = parseFloat(value);
if (unit === 'rpx') {
return uni.upx2px(_value);
}
if (unit === 'px') {
return _value * 1;
}
if(unit == '%') {
return _value / 100 * base
}
// 如果是其他单位,可以继续添加对应的转换逻辑
}
return 0;
}
// #endif
// #ifdef UNI-APP-X && APP
import { isNumber } from '../isNumber'
export function unitConvert(value : any | null, base: number = 0) : number {
if (isNumber(value)) {
return value as number
}
// 如果是字符串数字
if (isNumeric(value)) {
return parseFloat(value as string);
}
// 如果有单位
if (isString(value)) {
const reg = /^-?([0-9]+)?([.]{1}[0-9]+){0,1}(em|rpx|px|%)$/g;
const results = reg.exec(value as string);
if (results == null) {
return 0;
}
const unit = results[3];
const _value = parseFloat(value);
if (unit == 'rpx') {
// const { windowWidth } = uni.getWindowInfo()
// return windowWidth / 750 * _value;
return uni.rpx2px(_value)
}
if (unit == 'px') {
return _value;
}
if(unit == '%') {
return _value / 100 * base
}
// 如果是其他单位,可以继续添加对应的转换逻辑
}
return 0;
}
// #endif
// 示例
// console.log(unitConvert("123")); // 输出: 123 (字符串数字转换为数字)
// console.log(unitConvert("3.14em")); // 输出: 0 (无法识别的单位)
// console.log(unitConvert("20rpx")); // 输出: 根据具体情况而定 (根据单位进行转换)
// console.log(unitConvert(10)); // 输出: 10 (数字不需要转换)