gpt4 book ai didi

javascript - 将 ember-resource 与 couchdb 一起使用 - 如何保存我的文档?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:37:22 24 4
gpt4 key购买 nike

我正在使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com