gpt4 book ai didi

javascript - CouchDb 自动时间戳

转载 作者:数据小太阳 更新时间:2023-10-29 03:53:17 26 4
gpt4 key购买 nike

我正在使用 CouchDB 实现消息应用程序。我想为每条消息应用时间戳。我发现一些引用表明我应该使用 document update handlers为了这。就地更新似乎是正确的事情。但是我从哪里得到时间戳呢?它在某个地方的 req 对象中吗?

{
updates: {
"in-place" : function(doc, req) {
doc.timestamp = "???";
var message = "set timestamp to "+doc.timestamp;
return [doc, message];
}
}
}

最佳答案

答案是使用 javascript 的日期函数。

{
updates: {
"in-place" : function(doc, req) {
doc.timestamp = new Date().getTime();
var message = "set timestamp to "+doc.timestamp;
return [doc, message];
}
}
}

不幸的是,让这个更新从 jcouchdb 触发是下一个问题。

关于javascript - CouchDb 自动时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3009925/

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