Azure 数据工厂 - 参数插值
Azure Data Factory - Parameter interpolation
我正在尝试将管道参数添加到 Azure 数据工厂中 Azure Function 应用程序的 post 请求正文中。字符串似乎没有被替换,但 Microsoft 文档表明我正在以正确的方式进行替换。看这里:https://docs.microsoft.com/en-gb/azure/data-factory/control-flow-web-activity#request-payload-schema
这是我遇到的错误的屏幕截图:
我对如何将管道参数正确插入此请求感到困惑
谢谢!
如本 document 中所述,将您的参数包裹在大括号内 @{pipeline().parameters.ParameterName}
。
下面是我的例子 API post body:
{
"tourist_name": "@{pipeline().parameters.name}",
"tourist_email": "@{pipeline().parameters.email}",
"tourist_location": "@{pipeline().parameters.location}"
}
我正在尝试将管道参数添加到 Azure 数据工厂中 Azure Function 应用程序的 post 请求正文中。字符串似乎没有被替换,但 Microsoft 文档表明我正在以正确的方式进行替换。看这里:https://docs.microsoft.com/en-gb/azure/data-factory/control-flow-web-activity#request-payload-schema
这是我遇到的错误的屏幕截图:
我对如何将管道参数正确插入此请求感到困惑
谢谢!
如本 document 中所述,将您的参数包裹在大括号内 @{pipeline().parameters.ParameterName}
。
下面是我的例子 API post body:
{
"tourist_name": "@{pipeline().parameters.name}",
"tourist_email": "@{pipeline().parameters.email}",
"tourist_location": "@{pipeline().parameters.location}"
}