如何在输入的同一屏幕上使用安装程序变量
如何在同一屏幕上获取输入屏幕的信息?例如,假设我有一个文本字段,用于设置名为 myVar
的变量,以及在同一屏幕上需要 myVar
值的按钮> 去工作。
How can I get the the information that's entered into a screen while still on the same screen? For example, suppose I've got a text field that sets a variable called myVar
and a button on the same screen that needs the value of myVar
to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两种可能性:
1) 您的按钮操作脚本可以将所有表单组件上的输入保留为第一个操作。为此,请调用
context.getVariable("myVar") 将返回在同一屏幕上输入的值。
2)您可以在按钮的操作脚本中直接访问表单组件:
Two possibilities:
1) Your button action script can persist the input on all form components as its first action. To do that call
Then context.getVariable("myVar") will return the value that is entered on the same screen.
2) You directly access the form component in the action script of the button: