为什么我提交的数据格式是这样的
{
title: [
'机械战警',
'机械战警2',
'美国2',
'英语2',
'http: //r3.ykimg.com/05160000530eeb63675839160d0b79d5',
'http: //player.youku.com/player.php/sid/XNjA1Njc0NTUy/v.swf',
'2015',
'2018'
]
}
{
title: [
'机械战警',
'机械战警2',
'美国2',
'英语2',
'http: //r3.ykimg.com/05160000530eeb63675839160d0b79d5',
'http: //player.youku.com/player.php/sid/XNjA1Njc0NTUy/v.swf',
'2015',
'2018'
]
}
2017-02-20
视频中一段代码是不是错了。
fetch: function (cb) {
return this
.find({})
.sort('meta.updateAt')
exec(cb)
}
改成
fetch: function (cb) {
return this
.find({})
.sort('meta.updateAt')
.exec(cb)
}
我是看的小锅盖的代码里面是这样,改完之后就可以运行
fetch: function (cb) {
return this
.find({})
.sort('meta.updateAt')
exec(cb)
}
改成
fetch: function (cb) {
return this
.find({})
.sort('meta.updateAt')
.exec(cb)
}
我是看的小锅盖的代码里面是这样,改完之后就可以运行
2017-02-19
已采纳回答 / 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