gpt4 book ai didi

mongodb - 如何使用 meteor 的简单模式插入用户用户名

转载 作者:可可西里 更新时间:2023-11-01 09:24:24 24 4
gpt4 key购买 nike

我试图插入登录用户的用户名,但每当我提交表单时。该集合永远不会被插入。如果我注释掉 createdBy 字段,它只会被插入。我目前正在使用包 User Accounts作为我的登录/登录程序

这是我的代码:

createdBy: {
type: String,
autoValue: function() {
return this.field('username');
}
},
createdAt: {
type: Date,
autoValue: function() {
return new Date();
}
}

最佳答案

没关系解决它这是我不得不放下的。希望对某人有所帮助。

createdBy: {
type: String,
autoValue: function() {
return Meteor.user().username
}
},
createdAt: {
type: Date,
autoValue: function() {
return new Date();
}
}

关于mongodb - 如何使用 meteor 的简单模式插入用户用户名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33083622/

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