从这个站点获取代码示例。以下精简代码生成以下 javascript 错误: TypeError: Object #<Promise> has no method 'read'
代码:
Azure.notification = client.getTable('notification');
var a = Azure.notification.update({
id: id,
isRead: true
}).read().done(function (result) {
console.log(result);
}, function (err) {
});
链接中的引用代码几乎相同。我能说的唯一区别是,我持有对Azure
对象中几个不同表的引用,并且仅通过此更新查询数据时没有问题。我正在寻找如何确定更新是否成功。
todoItemTable.update({
id: idToUpdate,
text: newText
}).read().done(function (result) {
alert(JSON.stringify(result));
}, function (err) {
alert("Error: " + err);
});