Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Stibo STEP:在工作流中启动节点/项目的 javascript 是什么。不想使用默认向导屏幕,因为我只想启动节点的子节点而不是节点本身。
因此,您可以将节点启动到工作流程中(并且首先检查它是否已经存在总是明智的):
var wfID = "ID.of.workflow"; if (!node.isInWorkflow(wfID)) { node.startWorkflowByID(wfID, "Put workflow comment here"); }