我在我的文檔中有ctime
和mtime
(創建/修改時間)字段。CouchDB自動生成的字段
我該如何讓couchDB爲我處理這些?例如:
// Create a dog
curl -X POST http://localhost:5984/dogs -d '{"name": "Bill"}'
{"ok":true,"id":"75efaeb93aa2ed75ffa0abf9f5006d40","rev":"1-49ce25e3db701c8cb613c1fd18d99619"}
- >ctime
和mtime
應該是自動生成的
// Update a dog
curl -X PUT http://localhost:5984/dogs/75efaeb93aa2ed75ffa0abf9f5006d40?rev=1-49ce25e3db701c8cb613c1fd18d99619 -d '{"name": "BILL"}'
- >mtime
都應自動更新
我用validate_doc_update
來處理這個跳躍,類似於:
function (newDoc, oldDoc, userCtx) {
//
// sanity checks
//
if (oldDoc && newDoc.ctime) throw {"forbidden": "ctime cannot be changed!"}
...
//
// Auto-generate fields
//
var now = new Date().toISOString();
// mtime
newDoc.mtime = now;
// ctime
if (!oldDoc) newDoc.ctime = now;
}
,但沒有運氣:它的出現改變newDoc
沒有效果(通過複製傳遞?)
謝謝
可能跟蹤http://wiki.apache.org/couchdb/Document_Update_Handlers ...歡迎任何示例! :) – abernier
http://stackoverflow.com/questions/5810671/is-it-possible-to-add-fields-to-a-document-in-a-couchdb-validation-function – abernier
http://stackoverflow.com/questions/3009925/couchdb-automatic-timestamps – abernier