我在模式(简单模式)中有一个数字数据类型,但在使用 collections2 时无法在其中存储浮点数:
Schema.Coordinates = new SimpleSchema({
lng: {
type: Number,
min: -180.0,
max: 180.0
},
lat: {
type: Number,
min: -90.0,
max: 90.0
}
});
当我尝试插入除整数以外的任何内容(带有 xxxx.0 的任何内容)时,我收到验证错误:
W20150222-20:24:23.523(-8)? (STDERR) Error: Lng must be an integer