我已经在网上搜索了如何使用Loopback从MongoDB中获取多个随机对象的答案。
我寻找一种显示随机数据的好方法的原因在于像这样的模块"对本书/推荐"感兴趣,随机显示4-5本书。
希望你们能够为我提供一个如何以最佳方式解决问题的良好方向。
答案 0 :(得分:0)
要使用Loopback从MongoDB获取随机对象,您需要创建一个自定义端点(在您的model.js文件中),如下所示:
Model.random = function(cb){
// this next line is what connects you to MongoDB
Model.getDataSource().connector.connect(function(err, db) {
var collection = db.collection('YOURCOLLECTIONNAMEHERE');
//the below is MongoDB syntax, it basically pulls a
//random sample of size 1 from your collection
collection.aggregate([
{ $sample: { size: 1 } }
], function(err, data) {
if (err) return cb(err);
return cb(null, data);
});
});
}
替换"型号"使用您的型号名称。注意:它需要大写!如果您不知道您的集合名称,如果Loopback创建它,它通常与您的模型名称相同(不是大写)。
要使此端点显示在资源管理器中,请将其添加到model.js文件中:
Model.remoteMethod(
'random', {
http: {
path: '/random',
verb: 'get'
},
description: 'Gets one random thing',
returns: {
arg: 'randomThings',
type: 'json'
}
});
我在此示例应用程序中有一个此端点的示例:jeopardy-mongo-api