123456789101112131415161718192021222324252627282930313233343536373839 |
- // @ts-nocheck
- import {isString} from '../isString'
- import {isNumeric} from '../isNumeric'
- /**
- * 单位转换函数,将字符串数字或带有单位的字符串转换为数字
- * @param value 要转换的值,可以是字符串数字或带有单位的字符串
- * @returns 转换后的数字,如果无法转换则返回0
- */
- export function unitConvert(value: string | number): 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];
- value = parseFloat(value);
- if (unit === 'rpx') {
- return uni.upx2px(value);
- }
- if (unit === 'px') {
- return value * 1;
- }
- // 如果是其他单位,可以继续添加对应的转换逻辑
- }
- return 0;
- }
- // 示例
- // console.log(unitConvert("123")); // 输出: 123 (字符串数字转换为数字)
- // console.log(unitConvert("3.14em")); // 输出: 0 (无法识别的单位)
- // console.log(unitConvert("20rpx")); // 输出: 根据具体情况而定 (根据单位进行转换)
- // console.log(unitConvert(10)); // 输出: 10 (数字不需要转换)
|