我正在尝试测试一条使用Bookshelf在数据库中创建记录的快速路线。
router.post('/', function(req, res) {
Thing
.forge({
name: req.body.name
})
.save()
.then((thing) => {
res.status(201).json({
thing: thing.toJSON()
});
})
});
为了测试这条路线,我使用superagent发出请求,从响应正文中读取返回的 Thing ID,然后Thing
在数据库中查找它以检查它是否存在。
describe('POST /', function() {
it('creates things', function(done) {
request(app)
.post('/')
.send({
name: 'My Thing'
})
.end(function(err, res) {
// res.body.thing exists and has an ID set.
console.log("End occurred", res.body.thing.id);
Thing
.where('id', res.body.thing.id)
.fetch()
.then(function(thing) {
// At this point, thing is null when I would expect to be
console.log("Canvas fetched", thing);
})
});
});
});
在我看来,这就像一个数据库计时问题,因为 Thing 肯定是被创建的(至少,它在响应中返回时有一个 ID)。我不知道如何调试它,因为我是 NodeJS 的新手。我什至似乎没有记录 SQL 语句。
有什么建议么?