更新记录
1.0.2(2024-07-09)
下载此版本
修复bug
1.0.1(2024-07-09)
下载此版本
更新readme.md
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.23,Android:支持,iOS:支持,HarmonyNext:不确定 |
× |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
√ |
√ |
√ |
√ |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
math-exp
用法
import { MathExp } from '@/uni_modules/math-exp'
const exp = new MathExp()
const mathExp: string = `((price * 0.2) + ratio) / 5`
const options: any = {
price: 1500.5,
ratio: 3.2
}
const result: number | null = exp.eval(mathExp, options)
if (result == null) {
console.log('表达式不合法')
} else {
console.log('计算结果为:', result)
}