作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 Http Trigger C# 函数连接到我的 DocumentDB 数据。我在那里添加了一个 IEnumerable<dynamic> docDBData
作为 Run 方法的参数。
我如何/可以将其传递给 PowerShell 触发器函数?
在 azure-webjobs-sdk-script 存储库中找不到示例。不确定我是否在寻找正确的东西。
最佳答案
没有 DocumentDB/CosmosDB 和 powershell 的示例 - 但是,它应该相对简单。查询结果将以 json 格式存储在文件 $docDBData
中(假设您将绑定(bind)命名为 docDBData
),就像其他触发器/输入参数一样。
$in = Get-Content $triggerInput | ConvertFrom-Json;
$docDBResults = Get-Content $docDBData | ConvertFrom-Json;
...
这里是有关 DocumentDB 绑定(bind)的一个很好的资源: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb
关于powershell - 如何将 Powershell Azure Function 连接到 DocumentDB/CosmosDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43970257/
我是一名优秀的程序员,十分优秀!