您好我正在尝试在我的应用上获取所有用户。目前我在后端api有这个。
module.exports = app => {
app.get('/api/surveys', async (req,res) =>{
const surveys= await Survey.find({_user: req.user}).select({
recipients: false
});
res.send(surveys);
});
and this in my front end api
export const fetchUser = () => async dispatch => {
const res = await axios.get("/api/current_user");
dispatch({ type: FETCH_USER, payload: res.data });
};
我怎样才能让它吸引所有用户呢?
答案 0 :(得分:0)
不要在find()中使用任何参数。如果您使用{_user:req.user},您将告诉它仅从该用户中提取数据。