- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 Azure Function 和 Cosmo DB 开始。我在 Azure 门户中创建了一个函数应用程序,然后按照指南开始使用 VS Code:
npm install -g azure-functions-core-tools@4 --unsafe-perm true
Then New Project
Then New function, selected the HTTP trigger template
运行 F5 并部署时,它可以工作。
然后,我在门户中创建了一个“Azure Cosmos DB API for MongoDB”数据库。当我的方法被调用时,我按照这个发布了一个文档:
所以我目前的结果是:一个函数:
namespace TakeANumber
{
public static class TestFunc
{
[FunctionName("TestFunc")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
[CosmosDB(databaseName: "cosmodb-take-a-number", collectionName: "take-a-number", ConnectionStringSetting = "cosmoDbConnectionString")] IAsyncCollector<dynamic> documentsOut,
ILogger log)
{
log.LogInformation("C# HTTP trigger function processed a request.");
string name = req.Query["name"];
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
dynamic data = JsonConvert.DeserializeObject(requestBody);
name = name ?? data?.name;
string responseMessage = string.IsNullOrEmpty(name)
? "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response."
: $"Hello, {name}. This HTTP triggered function executed successfully.";
if (!string.IsNullOrEmpty(name))
{
// Add a JSON document to the output container.
await documentsOut.AddAsync(new
{
// create a random ID
id = System.Guid.NewGuid().ToString(),
name = name
});
}
return new OkObjectResult(responseMessage);
}
}
}
具有 cosmoDbConnectionString 设置的 local.settings.json 文件,其中包含 mongo db 连接字符串。
当我运行该函数时,我得到:
[2022-04-21T17:40:34.078Z] Executed 'TestFunc' (Failed, Id=b69a625c-9055-48bd-a5fb-d3c3b3a6fb9b, Duration=4ms)
[2022-04-21T17:40:34.079Z] System.Private.CoreLib: Exception while executing function: TestFunc. Microsoft.Azure.WebJobs.Host: Exception binding parameter 'documentsOut'. Microsoft.Azure.DocumentDB.Core: Value cannot be null. (Parameter 'authKeyOrResourceToken | secureAuthKey').
我的猜测是它需要一个带有另一种访问 token 的 Core SQL 数据库。我的问题:是否可以从 Azure 函数连接到 Azure CosmoDB for MongoDB?
最佳答案
如果您使用的是开箱即用的绑定(bind),则只能使用 Cosmos DB 的 SQL API。
您完全可以使用 MongoDB API,但您必须安装 MongoDB 客户端 SDK 并以编程方式处理您的数据(就像使用任何其他面向代码的方法一样)。
由于您的示例代码正在接收数据并将其写入 Cosmos DB,因此您可以通过 MongoDB 的 node/c#/python/etc 驱动程序进行写入(我相信他们仍然称它们为驱动程序 ),这实际上为您提供了 db.collection.insert( {} )
或更复杂的东西。
有关 Cosmos DB 绑定(bind)的更多信息 here .
关于mongodb - 如何从 Azure Function 连接到 Azure Cosmos DB for MongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71959016/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!