简体   繁体   English

使用减号运算符进行LogicApp液体转换

[英]LogicApp liquid transform using minus operator

I have a Liquid transform JSON-JSON. 我有一个Liquid转换JSON-JSON。 I have the following: 我有以下几点:

{
   "totalCount": {{15 | minus:1 }} 
}

But i'm getting 但是我越来越

 "totalCount": 15

and not 并不是

"totalCount": 14

What am i doing wrong here? 我在这里做错了什么?

Found the problem. 找到了问题。 It should be uppercase "M" in minus 减号应为大写“ M”

{
   "totalCount": {{15 | Minus:1 }} 
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM