数据操作

geojson数据格式


mognodb 删除字段
附近地理位置的查找
模糊查询
官方举例:
db.collection.find( { field: /acme.*corp/i } );
db.collection.find( { field: { $regex: 'acme.*corp', $options: 'i' } } );
项目使用
debates = CaoLiao.models.Debates.find(
name: { $regex : new RegExp("^.*#{name}.*$", "i") }
ts:
$lt: end
【数据操作】).fetch()

    推荐阅读