如何使用REPL测试Strongloop-Loopback查询
How to use REPL to test Strongloop-Loopback query
如何使用 REPL 测试 strongloop 查询。目前我正在使用 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 运行 命令然后输入 url
http://localhost:3001/sample
这将给我查询的结果。有没有更好的办法?谢谢!
没有用于 LoopBack 查询的 REPL。但是,您可以使用 `loopback-explorer 测试您的查询。参见 https://docs.strongloop.com/display/public/LB/Use+API+Explorer。
如何使用 REPL 测试 strongloop 查询。目前我正在使用 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 运行 命令然后输入 url
http://localhost:3001/sample
这将给我查询的结果。有没有更好的办法?谢谢!
没有用于 LoopBack 查询的 REPL。但是,您可以使用 `loopback-explorer 测试您的查询。参见 https://docs.strongloop.com/display/public/LB/Use+API+Explorer。