我有一個叫做藤貓鼬模型,看起來像這樣:中值數組傳遞到郵政快遞航線
content: [{
contentType: {
type: String,
default: null
},
contentValue: {
type: String,
default: null
}
}]
我的郵政快遞的路線是這樣的:
app.post('/todos', authenticate, (req, res) => {
var todo = new Todo({
content: req.body.content
});
res.send(todo)
//I am sending instead of sending the result for testing
});
當我使用Postman發送int測試數據內容數組將返回空「內容」:[]
我已經嘗試了幾種格式的郵差包括:
{
"content[contentType]": "reminder",
"content[contentValue]": "Will it blend"
}
和
{
"content": {
"contentType": "reminder",
"contentValue": "Will it blend"
}
}
但是都回來與空數組。
{
"content": []
}
我是否需要更改我的POST路由和/或以另一種格式發送數據?這裏
我想你是不是叫todo.save() –