私の質問を読んでくれてありがとう!
同日生まれ同士でチャットできるチャットアプリを作っています。
問題は、生年月日が異なるユーザーごとに変化する生年月日を追加してルートを変更するにはどうすればよいかということです。
私はすでにサインアップ/ログインして、すべてのユーザーの生年月日を保存できます。したがって、mongoDB から生年月日を取得して URL に入力し、間違ったチャットに誘導されないようにする必要があります。
router.get("/", chatController.getAll);
app.use('/api/v1/chat', passport.authenticate('jwt', { session: false }), apiChatRouter);
const getAll = (req,res)=>{
Message.find({},(err,docs)=>{
if(!err){
res.json({
"status":"succes",
"data":{
"chat":docs
}
});
}
});
}
fetch('http://localhost:3000/api/v1/chat/', {
//nodige headers meegeven met localstorage
'headers':{
'Authorization': 'Bearer ' + localStorage.getItem('token')
}
}).then(result => {
return result.json();
}).then(json =>{
console.log(json);
}).catch(err =>{
console.log("Unauthorized")
});
残りのコードを確認したい場合: https://github.com/abuijzen/Herexamen-Webtech3