问题描述
我有一个调用另一个管道的管道
I have a pipeline which calls another pipeline
每个管道可以具有各自的参数集.
each pipeline can have each own parameter set.
如何将父管道参数值传递给子管道???像下面的例子.
how to pass the parent pipeline parameter values to the child pipeline ??? Like the following example .
推荐答案
您可能会获得foreach活动,并且可以在每个Foreach下调用复制活动或执行管道活动.然后通过在项目中放置@activity('lookup_file').output.value来读取所有查找值.使用此解决方案可以读取所有参数.这个 应该能够处理一个或多个查找输入记录.
You may get foreach activity and can call copy activity or execute pipeline activity under each Foreach. Then read all lookup values by putting @activity('lookup_file').output.value in items. All the parameters can be read using this solution. This should be able to work for one or multiple look up input records.
谢谢
Alambir
Alambir
这篇关于传递参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!