我创建了一个azure函数以及一个带有用户集合的documentDB数据库,但是,我坚持将它们中的两个连接起来。我想只发送一个用户名,函数查询数据库,然后返回具有该唯一用户名的用户。
我正在使用节点js。有什么想法吗?
由于
答案 0 :(得分:2)
首先,您需要通过npm安装documentdb模块。使用以下命令:
npm install documentdb --save
之后,您已完成设置。现在,您可以开始编写一些代码来查询数据库中的集合。以下是使用Azure HTTP触发器功能查询系列集合的示例。
文件夹结构:
<强> 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);
}
});
});
};
经测试的结果:
有关详细信息,请参阅https://docs.microsoft.com/en-us/azure/documentdb/documentdb-nodejs-get-started。