- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 ember.js 和 couchdb 实现一个应用程序。我选择 ember-resource 作为数据库访问层,因为它很好地支持嵌套的 JSON 文档。
由于 couchdb 在每个文档中使用属性 _rev 进行乐观锁定,因此在将数据保存到 couchdb 后,必须在我的应用程序中更新此属性。
我实现这个的想法是在保存到数据库后立即重新加载数据,并将新的 _rev 与文档的其余部分一起取回。
这是我的代码:
// Since we use CouchDB, we have to make sure that we invalidate and re-fetch
// every document right after saving it. CouchDB uses an optimistic locking
// scheme based on the attribute "_rev" in the documents, so we reload it in
// order to have the correct _rev value.
didSave: function() {
this._super.apply(this, arguments);
this.forceReload();
},
// reload resource after save is done, expire to make reload really do something
forceReload: function() {
this.expire(); // Everything OK up to this location
Ember.run.next(this, function() {
this.fetch() // Sub-Document is reset here, and *not* refetched!
.fail(function(error) {
App.displayError(error);
})
.done(function() {
App.log("App.Resource.forceReload fetch done, got revision " + self.get('_rev'));
});
});
}
这适用于大多数情况,但如果我有嵌套模型,则在执行提取之前,子模型会被旧版本的数据替换!
有趣的是,正确的(更新的)数据存储在数据库中,错误的(旧的)数据在获取后存储在内存模型中,尽管 _rev 属性是正确的(以及主对象的所有属性) .
这是我的对象定义的一部分:
App.TaskDefinition = App.Resource.define({
url: App.dbPrefix + 'courseware',
schema: {
id: String,
_rev: String,
type: String,
name: String,
comment: String,
task: {
type: 'App.Task',
nested: true
}
}
});
App.Task = App.Resource.define({
schema: {
id: String,
title: String,
description: String,
startImmediate: Boolean,
holdOnComment: Boolean,
..... // other attributes and sub-objects
}
});
您知道问题出在哪里吗?
非常感谢任何建议!
亲切的问候,托马斯
最佳答案
我找到了一个更好的解决方案,可以从数据库中取回新的修订版本,而无需在每次保存后重新加载数据。
如果在 ember-resource
中调用带有更新选项的 save
,来自数据库的响应将合并到资源对象中。 couchdb 对保存请求的回答类似于
{"ok":true,"id":"mydocument-123","rev":"10-5f3cb46df301143a966251148f88663d"}
所以我只是将对象的 _rev
属性设置为数据库中的 rev
值。
我的应用程序特定资源类作为所有 couchdb 对象的父类(super class)如下:
App.Resource = Ember.Resource.extend({
save: function(options) {
options = options || {};
options.update = true; // sets id and rev after saving in ember-resource; rev is copied to _rev in didSave callback!
this.set('rev', undefined);
return this._super(options);
},
// we get the new revision in the "rev" attribute of the response from the save-request.
// since we set options.update to true, we get this value in the attribute "rev", which we simply copy to "_rev"
didSave: function() {
this._super.apply(this, arguments);
this.set('_rev', this.get('rev'));
}
.... // other properties and functions
});
资源定义如下:
App.TaskExecution = App.Resource.define({
....
schema: {
id: String,
_rev: String,
rev: String,
type: String,
..... // other attributes
}
});
到目前为止效果很好....
关于javascript - 将 ember-resource 与 couchdb 一起使用 - 如何保存我的文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10745433/
我正在寻找外行人对计算机硬件和组织的介绍。以下是我想讨论的一些主题。 Brief intro to electronics. Gates and state machines, intro to re
有没有人在 Visual Basic 2010 中看到过这个错误,如果有的话......关于如何解决它的任何想法? 错误是 module 'Resources' and module 'Resourc
这个问题在这里已经有了答案: Why ?attr/colorAccent dose not work below lollipop version? (2 个答案) 关闭 5 年前。 我收到以下错误
我正在尝试通过 ring 学习 clojure 网络开发和 compojure我有点不清楚 compojure.route/resources 和 ring.middleware.resource/w
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
我有一本包含多个食谱的 Chef 食谱,用于安装服务。 Chef-client 的工作方式是每 15 分钟(或其他固定时间间隔)重新收敛一次。现在我的食谱的第一步是停止服务,所以服务将每 15 分钟停
我有资源组“MyResources”,其中包含 4 个资源: AppService - 我的服务器, AppServicePlan - MyServerWestEuFarm, ApplicationI
我有资源组“MyResources”,其中包含 4 个资源: AppService - 我的服务器, AppServicePlan - MyServerWestEuFarm, ApplicationI
我有一个返回 ResponseEntity 的休息终点. 需要检查如何在 Swagger 规范中创建这种类型的响应。这里包中的资源是 org.springframework.core.io.Resou
In my azure portal I have 6 separate applications, I have to list all of the employed resources u
In my azure portal I have 6 separate applications, I have to list all of the employed resources u
我有一个问题,设计师不会显示表单。它失败,错误 Designer 给出警告,如下所示: 我该如何解决这个问题? 最佳答案 您似乎缺少在应用程序中加载此表单所需的项目 资源 . 您可以访问 资源右键单击
我是 angularJS 世界的新手,我可能误解了一些东西。 我的应用程序使用 Controller 、指令和服务,所有这些都运行完美,直到我使用带有 $resource 的服务,然后出现“冲突”或其
我在 Unity3D 工作。 我使用 Resources.LoadAll(path);加载文件夹和子文件夹中的所有项目。执行此操作后,我想获取对象的子文件夹名称或完整路径。这可能吗? 并且不建议使用
我需要监控每个客户端环境(一个订阅、多个资源组)的 Azure 支出。在我的研究中,我发现了 2 个可以使用的 API: 资源费率卡( https://msdn.microsoft.com/fr-fr
在 RDF 1.1 XML 语法文档中 rdf:resource 在定义 Empty Property Elements 时用作缩写形式: When a predicate arc in an RDF
这是一种常见的情况,我们需要在用户更新/创建一些数据后向用户显示错误/成功消息,我们如何在 AngularJS 中实现它? 我想添加回调但找不到解决方案。使用 $http.post().success
我正在使用 android studio 作为 IDE 开发一个 android 应用程序。 我的问题是: 如何在构建APK过程中排除某个目录下的某些文件? 在我的例子中,我想从构建中排除一些图像,因
在编译我的 Visual Studio C# 项目时,出现以下错误: 在“Resources”参数中多次指定项目“obj\Debug\SampleProject.Forms.MDIMain.resou
使用 CoffeeScript、Angular 和 $resource,我创建了以下工厂: angular.module('myapp', ['ngResource']).factory 'MyObj
我是一名优秀的程序员,十分优秀!