猫鼬&浮动值

时间:2015-11-06 01:02:13

标签: node.js mongodb express meanjs

我的lat& lng数字正在转换为字符串。我的部分整数仍然是Number的正确数据类型。如何设置模型以便我可以获得我的lat& amp; lng以Float而不是String退出?

我将latLng数据存储在我的数据库中。现在我的数据类型设置为数字为lat& LNG。当我查看我的数据库时,我看到了:

{
  "_id" : ObjectId("563bd98a105249f325bb8a7e"),
  "lat" : 41.8126189999999980,
  "lng" : -87.8187850000000054,
  "created" : ISODate("2015-11-05T22:34:50.511Z"),
  "__v" : 0,
  "section" : 0,
}

但是当我使用快递我的数据时,我得到了这个:

{
  "_id": "563bd98a105249f325bb8a7e",
  "lat" : "41.8126189999999980",
  "lng" : "-87.8187850000000054",
  "__v": 0,
  "section" : 0,
  "created" : "2015-11-05T22:34:50.511Z",
}

我的模特:

var WaypointSchema = new Schema({
    lat: {
        type: Number
    },
    lng: {
        type: Number
    },
    section: {
        type: Number
    }
    created: {
        type: Date,
        default: Date.now

    }
});

mongoose.model('Waypoint', WaypointSchema);

Express控制器:

exports.list = function(req, res) { 
    Waypoint.find().sort('-created').populate('user', 'displayName').exec(function(err, waypoints) {
        if (err) {
            return res.status(400).send({
                message: errorHandler.getErrorMessage(err)
            });
        } else {
            res.jsonp(waypoints);
        }
    });
};

3 个答案:

答案 0 :(得分:10)

虽然mongoDB完全支持float类型,但是mongoose仅支持整数Number的类型。如果您尝试使用mongooses类型Number保存到mongoDB浮点数,它将转换为字符串。

要对此进行排序,您需要为mongoose加载一些插件,这将扩展其值类型。有些插件最适合使用货币或日期,但在您的情况下,我会使用https://www.npmjs.com/package/mongoose-double

更改后的模型看起来像这样:

var mongoose = require('mongoose')
require('mongoose-double')(mongoose);

var SchemaTypes = mongoose.Schema.Types;
var WaypointSchema = new Schema({
    lat: {
        type: SchemaTypes.Double
    },
    lng: {
        type: SchemaTypes.Double
    },
    section: {
        type: Number
    }
    created: {
        type: Date,
        default: Date.now
    }
});

mongoose.model('Waypoint', WaypointSchema);

希望它有所帮助。

答案 1 :(得分:0)

var mongoose = require('mongoose');<br>
var Schema = mongoose.Schema;<br>
var Waypoint = new Schema({<br>
lat: {<br>
        type: SchemaTypes.Double<br>
    },<br>
    lng: {<br>
        type: SchemaTypes.Double<br>
    },<br>
    section: {<br>
        type: Number<br>
    }<br>
 point: {<br>
        type: [Number],<br>
        index: '2d'<br>
    },<br>
}, {<br>
    timestamps: true<br>
})<br>
event.index({<br>
    Point: '2dsphere'<br>
});<br>
module.exports = mongoose.model('Waypoint', Waypoint);<br>

waypoint.save(point: [parseFloat(values.latitude), parseFloat(values.longitude)],)

答案 2 :(得分:0)

从当前版本的 mongoose (v5.12.6) 开始,它支持可用于此目的的 Decimal128