如何使用 Node.js 从 Azure Table 存储中获取表列表?
How do I get a list of tables from Azure Table Storage using Node.js?
我在 node.js 模块中使用 azure-storage-node 包。我可以创建表和实体,但看不到如何从存储容器中获取表列表。我该怎么做?
您需要调用 listTablesSegmented
方法来列出表。
var azure = require('azure-storage');
var tableSvc = azure.createTableService('account-name', 'account-key');
tableSvc.listTablesSegmented(null, function(error, result) {
if (!error) {
var entries = result.entries;
for (var i=0; i<entries.length; i++) {
console.log(entries[i]);//prints table name
}
}
});
我在 node.js 模块中使用 azure-storage-node 包。我可以创建表和实体,但看不到如何从存储容器中获取表列表。我该怎么做?
您需要调用 listTablesSegmented
方法来列出表。
var azure = require('azure-storage');
var tableSvc = azure.createTableService('account-name', 'account-key');
tableSvc.listTablesSegmented(null, function(error, result) {
if (!error) {
var entries = result.entries;
for (var i=0; i<entries.length; i++) {
console.log(entries[i]);//prints table name
}
}
});