所以我想从users
集合中获取所有用户的工作,而现在我只能获取已登录用户的工作。
这是我的用户架构
var userSchema = new Schema({
email: { type: String},
password: { type: String },
jobs: [{
title: { type: String },
description: { type: String }
}]
});
这是我的中间件
// Get user's jobs
exports.index = function (req, res, next) {
res.json({ jobs: req.user.jobs });
}
作为一个例子,我是id(1)的用户,但我们是三个用户。如何从其他用户那里获得jobs
?
我是这个后端的新手,我将非常感谢你的帮助