我正在尝试插入登录用户的用户名,但每当我提交表单时。集合永远不会被插入。只有当我注释掉 createdBy 字段时,它才会被插入。我目前正在使用包用户帐户作为我的登录/登录程序
这是我的代码:
createdBy: {
type: String,
autoValue: function() {
return this.field('username');
}
},
createdAt: {
type: Date,
autoValue: function() {
return new Date();
}
}