我正在尝试向url发送一个从html表中获取的日期,该表有一个按钮,我通过POST发送带有操作'/item/2016-04-04'
的网址,但它出现在
未捕获的浏览器ReferenceError:$未定义于2016-01-01:1; 无法加载资源:服务器响应状态为404 (未找到)。
客户方:
<form role="form" action="/item/2016-01-01" method="post" class="form-horizontal form-label-left"><button type="submit" class="btn btn-primary btn-xs"><i class="fa fa-eye"></i> Ver</button></form>
服务器端:
app.post('/item/:date', function(req, res){
if(!req.carPoolSession.username){
res.redirect('/');
} else {
db_handler.obtener_localizacion_departamento_local(req.carPoolSession.username,function(queryResLocalDepLocalizacion){
console.log(req.params.id);
res.render('vista_caja_chica_item.jade',{username:req.carPoolSession.username,titulo:queryResLocalDepLocalizacion});
});
}
});