gpt4 book ai didi

javascript - 如何查找 meteor 集合中最后一个元素/对象的 id?

转载 作者:行者123 更新时间:2023-12-03 07:00:31 24 4
gpt4 key购买 nike

我在 meteor 中有一个来自表单的集合(表单是使用 aldeed:autoform 创建的)。我想提取集合的最后一个元素/对象(或最近的条目)的 id。我怎样才能做到这一点??

编辑:自动表单如下所示:

 PlayersList = new Mongo.Collection("players");
PlayersList.allow({
insert: function(){

}
});
PlayersListSchema = new SimpleSchema({
name: {
type: String,
label: "Name",

},
age: {
type: Number,
label: "Age"
},
gender:{
type: String,
label: "Gender"

},
country: {
type: String,
label: "Country of Birth",

},
race: {
type: String,
label: "Ethnicity",

},
income: {
type: Number,
label: "Income",

},
education: {
type: String,
label: "Education Level",

},
});
PlayersList.attachSchema(PlayersListSchema)

每个表单都会生成一个 id。我想要数据库中最后一个表单的 id。

最佳答案

var lastEntryId = [].slice.call( *meteorCollection* ).reverse()[0].id; 

或者,如果这看起来又短又简单,您可以选择更短、更快的:

var lastEntryId = [].slice.call( *meteorCollection* ).pop().id; 

或者您可以使用真正的斯巴达,甚至更快、真正简洁:

var lastEntryId = [].pop.call( *meteorCollection* ).id;

如果尚未设置 id 属性,您将得到一个空字符串。

关于javascript - 如何查找 meteor 集合中最后一个元素/对象的 id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37082767/

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