使用 Flow Automate 进行整数转换
Integer convertion with Flow Automate
我在测试流程后收到此消息:
The variable 'subAccountId' of type 'Integer' cannot be initialized or
updated with value '123' of type 'String'. The variable 'subAccountId'
only supports values of types 'Integer'.
我试过:
- @int(THE_VARIABLE)
- @int(变量(THE_VARIABLE)
- @int(输出(THE_VARIABLE)
- THE_VARIABLE
None 那些作品,有谁知道如何处理这个?
当您尝试输入变量的值时,而不是使用流内联的值文本输入框,select“表达式”选项(见下图中的红色箭头);在该模式下,您将能够使用流表达式语言将字符串值转换为整数值。
我在测试流程后收到此消息:
The variable 'subAccountId' of type 'Integer' cannot be initialized or updated with value '123' of type 'String'. The variable 'subAccountId' only supports values of types 'Integer'.
我试过:
- @int(THE_VARIABLE)
- @int(变量(THE_VARIABLE)
- @int(输出(THE_VARIABLE)
- THE_VARIABLE
None 那些作品,有谁知道如何处理这个?
当您尝试输入变量的值时,而不是使用流内联的值文本输入框,select“表达式”选项(见下图中的红色箭头);在该模式下,您将能够使用流表达式语言将字符串值转换为整数值。