如何使用REPL测试strong循环查询。目前我正在使用routes.js来测试查询,这看起来不太好。
router.get('/sample', function (req, res) {
var Brand = app.models.Brand;
Brand.find({
skip: 2,
limit: 3
}, function (err, data) {
res.send(data);
})
});
然后我使用slc run命令运行应用程序,然后输入url
http://localhost:3001/sample
这将给我查询的结果。有没有更好的办法?谢谢!
答案 0 :(得分:0)
LoopBack查询没有REPL。但是,您可以使用`loopback-explorer测试查询。请参阅https://docs.strongloop.com/display/public/LB/Use+API+Explorer。