已采纳回答 / foxchan
你需要用到 body-parser 这个库对请求中的参数进行封装和解析,按照下面的方法操作:npm install --save body-parservar bodyParser = require('body-parser');在你的 express 初始js文件中,添加对于 body-parser 的引用,app.use(bodyParser.urlencoded({ extended: true }));app.use(bodyParser.json());在提交的form中对于input设置na...
2017-02-17
最新回答 / 无言_yo
路由里的 id 用来查找、更新和删除,schema 中定义的是对象的存储结构,id 一般由 mongodb 自己生成,当然也可以自己生成 id(在 schema 中加上id)。
2017-02-16
已采纳回答 / 前端_清歌莫断肠
静态资源的路径不对吧app.use(serveStatic('bower_components'));bootstrap的资源都放在bower_components下link(href="/bootstrap/dist/css/bootstrap.min.css",rel="stylesheet")
2017-02-16
最新回答 / 双鱼座
app.get("/movie/:id",function(req,res){ res.render("detail",{ title : 'IMOOC 详情页面', movie : { doctor : '肖成布莱尔', country : "中国大陆", title : "机械战警", year : 2014, poster : 'http://p5.7k7kimg.cn/m/201703/0109/107-1F3010932360-L.jpg', language : '...
2017-02-09