2

我想使用 collection2 和 autoform 在新集合中插入一些用户数据。我的用户集合中有很多数据。

我不知道如何做到最好?

也许我需要发布和订阅用户集合,然后在我的模式中获取这些数据。

这是我的架构

Posts = new Mongo.Collection('posts');

PostsIndex = new EasySearch.Index({
	collection: Posts,
	fields: ['title','tags.tags'],
	engine: new EasySearch.Minimongo()
	// name: 'PostsIndex',
	// permission: function(options) {
	//     return userHasAccess(options.userId); // always return true or false here
	// }
});

Posts.allow({
	insert: function(userId, doc) {
		return !!userId;
	}
});

Schema = {};

Schema.Tags = new SimpleSchema({
	tags: {
		type: String
	}
});

Schema.PostsSchema = new SimpleSchema({
	title: {
		type: String,
		label: '',
		max: 250,
		min: 3
	},
	tags: {
		type: [Schema.Tags]
	},
	authorId: {
		type: String,
		label: 'Author',
		autoValue: function(){
			return this.userId
		},
		autoform: {
			type: 'hidden'
		}
	},
	authorName: {
		type: String,
		label: 'AuthorName',
		autoValue: function(){
			return this.userId.username
		},
		autoform: {
			type: 'hidden'
		}
	},
	createdAt: {
		type: Date,
		label: 'CreatedAt',
		autoValue: function(){
			return new Date()
		},
		autoform: {
			type: 'hidden'
		}
	}
});

Posts.attachSchema(Schema.PostsSchema);

先感谢您 :)

4

2 回答 2

1

this.userId只返回当前用户的 id 而不是对象。this.userId.username不能工作。用于this.userId在 Meteor.users 集合中查找用户并返回用户名属性。

var tempUser = Meteor.users.findOne({_id: this.userId});
return tempUser.username;

从流星文档

默认情况下,当前用户的用户名、电子邮件和个人资料会发布到客户端。

于 2015-11-17T21:03:21.850 回答
0

默认情况下,meteor 会为用户集合中的文档发布用户名、id 和电子邮件字段,以便帐户系统正常工作。如果您想要当前登录用户的用户名,您可以使用:

Meteor.user().username;

我刚刚在客户端助手中测试了这个,而不是在 autoValue 中,但我认为这也应该在服务器上工作。

于 2016-02-19T23:50:17.500 回答