您好我正在使用Mongoose和Express提交地图的地理空间数据(GEOJSON)。 我有一个表格,它获取一个点的经度和纬度,然后用户可以提交以保存这一点。
如果我在帖子路线的'坐标'部分中对值进行硬编码,我的表单有效,但是如果我尝试执行req.body.longitude和req.body.latitude它不会发布到数组并让我得到一个'req not defined'错误。
我在这里选择了mongoose geojson的基础知识: https://gist.github.com/aheckmann/5241574
如何从混合模式中的req.body值中保存此表单?感谢。
我的架构
var schema = new Schema({
type: {type: String},
properties: {
popupContent: {type: String}
},
geometry: {
type: { type: String }
, coordinates: {}
}
});
schema.index({ geometry: '2dsphere' });
var A = mongoose.model('A', schema);
我的帖子
app.post('/api/map', function( request, response ) {
console.log("Posting a Marker");
var sticker = new A({
type: 'Feature',
properties: {
popupContent: 'compa'
},
geometry: {
type: 'Point',
coordinates: [req.body.longitude, req.body.latitude]
}
});
sticker.save();
return response.send( sticker );
res.redirect('/map')
});
我的客户表格
form(method='post', action='/api/map')
input#popup(type="text", value="click a button", name="popup")
input#lng(type="text", value="click a button", name="longtude")
input#lat(type="text", value="click a button", name="latitude")
input(type="submit")
答案 0 :(得分:1)
您的函数签名表明没有req
参数。
app.post('/api/map', function( request, response )
您应该在签名或正文中重命名参数。
app.post('/api/map', function(request, response) {
console.log("Posting a Marker");
var sticker = new A({
type: 'Feature',
properties: {
popupContent: 'compa'
},
geometry: {
type: 'Point',
coordinates: [request.body.longitude, request.body.latitude]
}
});
sticker.save();
return response.send(sticker);
});
呃,刚刚看到这个线程尘土飞扬。嗯......