如何使用Azure函数返回documentDB文档?

时间:2017-02-02 04:01:25

标签: javascript node.js azure azure-cosmosdb azure-functions

我创建了一个azure函数以及一个带有用户集合的documentDB数据库,但是,我坚持将它们中的两个连接起来。我想只发送一个用户名,函数查询数据库,然后返回具有该唯一用户名的用户。

我正在使用节点js。有什么想法吗?

由于

1 个答案:

答案 0 :(得分:2)

首先,您需要通过npm安装documentdb模块。使用以下命令:

npm install documentdb --save

之后,您已完成设置。现在,您可以开始编写一些代码来查询数据库中的集合。以下是使用Azure HTTP触发器功能查询系列集合的示例。

文件夹结构:

  • node_modules /
  • 的.gitignore
  • config.js
  • function.json
  • index.js
  • 的package.json

<强> CONFIG.JS

var config = {}

config.endpoint = "https://<documentdb name>.documents.azure.com:443/";
config.primaryKey = "<primary key>";

config.database = {
    "id": "FamilyDB"
};

config.collection = {
    "id": "FamilyColl"
};

module.exports = config;

<强> INDEX.JS

var documentClient = require("documentdb").DocumentClient;
var config = require("./config");

var databaseUrl = `dbs/${config.database.id}`;
var collectionUrl = `${databaseUrl}/colls/${config.collection.id}`;

var client = new documentClient(config.endpoint, { "masterKey": config.primaryKey });

module.exports = function (context, req) {
    context.log('JavaScript HTTP trigger function processed a request.');

    if (req.query.name || (req.body && req.body.name)) {

        var name = req.query.name || req.body.name;

        queryCollectionByName(name).then((result) => {
            context.log('result: ', result);
            res = {
                body: "Result: " + JSON.stringify(result)
            };

            context.done(null, res);

        }, (err) => {
            context.log('error: ', err);
            res = {
                body: "Error: " + JSON.stringify(err)
            };

            context.done(null, res);
        });

    }
    else {
        res = {
            status: 400,
            body: "Please pass a name on the query string or in the request body"
        };

        context.done(null, res);
    }
};


function queryCollectionByName(name) {

    return new Promise((resolve, reject) => {
        client.queryDocuments(
            collectionUrl,
            `SELECT VALUE r.children FROM root r WHERE r.lastName = "${name}"`
        ).toArray((err, results) => {
            if (err) reject(err)
            else {
                resolve(results);
            }
        });
    });
};

经测试的结果:

enter image description here

有关详细信息,请参阅https://docs.microsoft.com/en-us/azure/documentdb/documentdb-nodejs-get-started