【发布时间】:2021-09-01 13:17:07
【问题描述】:
我有一个运行 Azure Function 的步骤 UpdateJobListingFromSilkroad。 下一步是给自己发电子邮件,以了解它是否失败。 我将“运行后”设置为所有 4 个选项。 在电子邮件正文中,我想获得“追赶”的结果 所以我找到了结果函数。 输入 result() 时无法保存,因为“模板语言函数‘result’必须至少有一个参数。” 所以我尝试了 result(UpdateJobListingFromSilkroad) 它告诉我它是无效的 result("UpdateJobListingFromSilkroad") 但结果('UpdateJobListingFromSilkroad')有效但保存显示错误:
at line '1 and column '345' references the action 'UpdateJobListingFromSilkroad'
of type 'Function':
only the actions of type
'System.Linq.Enumerable+WhereSelectArrayIterator`2[Microsoft.Azure.Workflows.Templates.Schema.FlowTemplateOperationType,System.String]' are allowed to be referenced by 'result' function. '.
那么我如何得到结果呢?
【问题讨论】:
-
这么简单的事情开销太大
标签: azure-logic-apps