Nintex 自定义设置条件操作
使用 Nintex Workflow,我知道如何创建一个无需传递数据即可简单执行的自定义操作。但是如何创建自定义“设置条件”操作?特别是,我想知道如何将操作的结果(真或假)传达回工作流程,以便可以采取适当的分支。谢谢。
Using Nintex Workflow, I know how to create a custom action that simply executes without passing around data. But how do I create a custom "Set a Condition" action? In particular, I want to know how to communicate the result of the action (true or false) back to the workflow so that the appropriate branch can be taken. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于任何想知道的人,解决方法是让自定义操作将其结果写入布尔工作流变量,然后从现成的“设置条件”操作检查该变量的值。 Nintex SDK 提供了有关从自定义操作写入现有工作流变量的详细信息。
For anyone who is wondering, the workaround was to have the custom action write its result to a Boolean workflow variable, and then to check the value of that variable from the out-of-the-box "Set a Condition" action. Nintex SDK has details on writing to an existing workflow variable from a custom action.