我正在使用Azure表存储在插入新项目后发送推送通知。目前我正在尝试查询第二个表以检索我想用于推送通知的字符串。
我对Node.js很陌生,所以我研究了一些代码并尝试了以下内容,在TestTable上启动查询,找到基于TestProperty的正确实体。一旦找到了正确的实体,我就想使用它中的特定属性来处理。
这是我使用当前代码时出现的错误:
TypeError: Cannot read property 'table' of undefined
我尝试查询第二个表的部分代码
var azureMobileApps = require('azure-mobile-apps'),
tables = require('azure-mobile-apps/src/express/tables'),
queries = require('azure-mobile-apps/src/query'),
logger = require('azure-mobile-apps/src/logger');
var table = azureMobileApps.table();
table.insert(function (context) {
logger.info('Running TestTable1.insert');
var testTable = azureMobileApps.tables.table('TestTable2');
var query = queries.create('TestTable2').where({ TestProperty : context.item.testproperty });
return context.execute()
.then(function (results) {
.....
答案 0 :(得分:2)
由于Azure表存储是一种在云中存储非结构化NoSQL数据的服务,您可以参考https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-tables/获取更多信息。
但是,azure-mobile-apps-node sdk中的tables
模块包含将表添加到Azure移动应用程序的功能。它返回一个路由器,可以附加到一个快速应用程序,其中包含一些用于注册表的附加功能。实际上利用Azure SQL(Azure上的SQL Server数据库服务)。
根据您的代码段,您似乎正在实施第二个概念。
根据您的描述,如果我没有误解,您想在EasyTables脚本的table2
操作中查询table1
。
我们可以利用"使用()"自定义中间件,以指定针对表格的每个请求执行的中间件,作为http://azure.github.io/azure-mobile-apps-node/module-azure-mobile-apps_express_tables_table.html#~use上azure-mobile-apps sdk文档的描述。
E.G。
var queries = require('azure-mobile-apps/src/query');
var insertMiddleware = function(req,res,next){
var table = req.azureMobile.tables('table2'),
query = queries.create('table2')
.where({ TestProperty : req.body.testproperty });
table.read(query).then(function(results) {
if(results){
req.someStoreData = somehander(results); //some hander operations here to get what you want to store and will use in next step
next();
}else{
res.send("no data");
}
});
};
table.insert.use(insertMiddleware, table.operation);
table.insert(function (context) {
console.log(context.req.someStoreData);
return context.execute();
});
此外,如果您需要在EasyTables脚本中推送通知,可以参考https://github.com/Azure/azure-mobile-apps-node/blob/master/samples/push-on-insert/tables/TodoItem.js上的Github上的示例
答案 1 :(得分:0)
谢谢加里。这是非常有帮助的。 要完成您的答案,您现在可以这样写:
async function filterByAllowedDomain(context) {
var domains = await context.tables('domains')
.where({ allowed: true })
.read();
var categories = await context.tables('categories')
.where(function (ids) {
return this.domainId in ids;
}, domains.map(d => d.id))
.read();
context.query.where(function (ids) {
return this.categoryId in ids;
}, categories.map(c => c.id));
return context.execute(); }