05 - Sending the Response
Overview
The Code
/*********************
* Route 5: Return data in a Promise
**********************/
router.post('/five', function (req, res) {
var testData = req.body.testdata.item;
TestModel
.create({
testdata: testData
})
.then( //1
function message(data) {
res.send(data); //2
}
);
});Testing

Summary of the Flow
Last updated