0

当他们在 CosmosDB 上创建时,我需要使用来自其他文档(type2)的数据更新一些文档(type1)。我决定使用 javascript Azure Functions 和 cosmosDBTrigger,无服务器 Azure 选项。我在绑定表达式以配置 functions.json 以获取与触发函数的 doc-type2 关联的 doc-type1 时遇到问题。任何帮助都可能很棒。

CosmosDB 文档类型 1:

{
    "type": "type1"
    "id": "123",
    "serial" : "123",
    "lastconf": []
}

CosmosDB 文档类型 2:

{
    "type": "type2"
    "id": "qwe",
    "idtype1" : "123",
    "conf1":1
}

函数.json

{
    "bindings": [{
        "name": "documents",
        "type": "cosmosDBTrigger",
        "direction": "in",
        "leaseCollectionName": "leases",
        "connectionStringSetting": "_DOCUMENTDB",
        "databaseName": "db",
        "collectionName": "dbDev",
        "createLeaseCollectionIfNotExists": true
    },
    {
      "name": "inputDocumentIn",
      "type": "cosmosDB",
      "databaseName": "db",
      "collectionName": "dbDev",
      "id": "{idtype1}", // sqlQuery ??
      "connectionStringSetting": "_DOCUMENTDB",
      "direction": "in"
  },
  {
      "name": "inputDocumentOut",
      "type": "cosmosDB",
      "databaseName": "db",
      "collectionName": "dbDev",
      "createIfNotExists": false,
      "connectionStringSetting": "_DOCUMENTDB",
      "direction": "out"
  } ]
}

index.js:

module.exports = async function(context, documents, inputDocumentIn, inputDocumentOut) {
   context.log('JavaScript trigger function processed a request.');

   if (!!documents && documents.length > 0) {

       context.log('Documents: ', documents);

       inputDocumentOut = inputDocumentIn;
       inputDocumentOut.lastconf = documents.conf1; //documents[i].conf1; ??

       context.log('inputDocumentOut: ', inputDocumentOut); 
   }
}

4

1 回答 1

3

Cosmos DB 触发器将文档列表作为有效负载发送。由于内容是列表,而不是单个对象/文档,因此使用输入绑定将不起作用(您的inputDocumentIn绑定)。

通过检查您的绑定配置,我注意到的另一件事是,您的输出绑定正在写入触发器正在侦听的同一个容器/帐户,您实际上是在创建一个循环(您编写的文档将再次触发函数)。

如果您想触发函数、接收更改 ( documents) 并生成输出,您通常会遍历结果,并将结果输出到不同的容器中。如果确实需要将输出发送到同一个集合,则需要添加一些逻辑来过滤documents列表中的那些。

如果您需要执行查询,则执行可能还需要作为循环的一部分发生,但是没有可以帮助您的绑定,您需要有一个客户端并手动执行这些操作。

在输出绑定中保存文档,我猜这也需要在循环中发生(因为您希望在每个函数执行中保存多个)当然可以使用数组:

module.exports = async function(context, documents, inputDocumentIn, inputDocumentOut) {
   context.log('JavaScript trigger function processed a request.');

   if (!!documents && documents.length > 0) {

       context.log('Documents: ', documents);
       var documentsToSave = [];

       for(var i = 0; i < documents.length; i++)
       {
            var document = documents[i];
            var documentToSave = {};
            // process document, maybe assign property values to documentToSave from document
            documentsToSave.push(documentToSave);
       }

       inputDocumentOut = documentsToSave;
   }
}
于 2019-12-13T19:50:27.397 回答