我添加了通过输入表单动态添加人员到我的列表的可能性,但是我的排序被打破了,因为它对新人进行排序,就像我给他们的价值数百而不是简单的数字。更多关于屏幕: screen with values
这是我的添加代码:
'submit'(event){
event.preventDefault();
var thatMan = event.target.gringoField.value;
var thatScore = event.target.gringoScore.value;
GringosList.insert({
name: thatMan,
score: thatScore
});
console.log(thatScore);
event.target.gringoField.value = "";
event.target.gringoScore.value = "";
}
并排序:
tasks() {
return GringosList.find({}, {sort: {score: -1, name: 1}});
},
什么可能导致问题以及如何解决?