@toy-box/formula
v1.0.25
Published
## Getting Started
Downloads
35
Keywords
Readme
toybox-formula
Getting Started
Install dependencies,
$ npm i
Start the dev server,
$ npm start
Build documentation,
$ npm run docs:build
Build library via father-build
,
$ npm run build
特殊函数
IF 和 SWITCH 返回类型 UNKNOW
TODAY 和 NOW 没有入参
暂不支持
TIMEVALUE
CEILINGMATH
FLOORMATH
SPLIT
INCLUDES
Formula
1.BaseMath
1
"aa"
current.id
$user.name
1 + 2 _ 3 / 2
(1 _ 2) + $current.id
2.Function
COUNT(1,2)
COUNT(1,2,current.id)
COUNT(1,2,1+2)
COUNT(1,2,SUM(1,2))
3.Compare
- (1+20) +179 > 199
- 199 < 229
- 179 = $current.id
- 179 <> 199
- (1+20) +179 >= 199
- 179 <= current.id
- '> < >= <=' 仅支持两个数字之间的比较
- '= <>' 支持两个数字、boolean、引用类型之间的比较