我在node.js模块中使用azure-storage-node软件包。我可以创建表和实体,但是看不到如何从存储容器中获取表列表。我该怎么做?
答案 0 :(得分:1)
您需要调用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
}
}
});