While this is almost there, there is one final item. If there is a conflict, the server version of the document should be returned. That means the 409 and 412 responses need to return convertItem(document) instead a simple change.
Deleting a RecordDeleting a record does not delete a record. Azure Mobile Apps uses soft delete (whereby the deleted flag is set to true). This means that I need to use replaceDocument() again for deletions:
function deleteItem(req, res, id) {driver.fetchDocument(refs.client, refs.table, id)
.then((document) => {
if (typeof document === 'undefined') {res.status(404).json({ 'error': 'Not Found' });return;
}
var item = convertItem(document);
delete item.updatedAt;
delete item.version;
item.deleted = true;
driver.replaceDocument(refs.client, document._self, item)
.then((updatedDocument) => {res.status(200).json(convertItem(updatedDocument));return;
});
})
.catch((error) => {
res.status(error.code).json(convertError(error));
});
}
This brings up a point about the GetOneItem() method. It does not take into account the deleted flag. I need it to return 404 Not Found if the deleted flag is set:
function getOneItem(req, res, id) {driver.fetchDocument(refs.client, refs.table, id)
.then((document) => {
if (typeof document === 'undefined' || document.deleted === true)res.status(404).json({ 'error': 'Not Found' });
elseres.status(200).json(convertItem(document));
})
.catch((error) => {
res.status(error.code).json(convertError(error));
});
}
It’s a simple change, but important in getting the protocol right.
What’s left?There is only one method I have not written yet, and it’s the biggest one of the set the getAllItems() method. That’s because it deals with OData querying, which is no small task. I’ll be tackling that in my next article. Until then, get the current codebase at my GitHub repository .
本文数据库(综合)相关术语:系统安全软件
主题: Git、GitHub、
分页:12
转载请注明
本文标题:Updating Documents in DocumentDb
本站链接:
分享请点击:
1.凡CodeSecTeam转载的文章,均出自其它媒体或其他官网介绍,目的在于传递更多的信息,并不代表本站赞同其观点和其真实性负责;
2.转载的文章仅代表原创作者观点,与本站无关。其原创性以及文中陈述文字和内容未经本站证实,本站对该文以及其中全部或者部分内容、文字的真实性、完整性、及时性,不作出任何保证或承若;
3.如本站转载稿涉及版权等问题,请作者及时联系本站,我们会及时处理。
登录后可拥有收藏文章、关注作者等权限...
注册 登录