Posts by S99 • 35 points
4 posts
-
-3
votes1
answer51
viewsQ: Reactjs no matter the css
I’d like to know what the problem is with: import './styles.css'. The error is as follows: ./src/index.css…
-
1
votes1
answer37
viewsQ: Reversing the display order with nodejs
Good? I would like to know how to reverse the order of display of bank items async index(req, res){ const docs = await Vag.find(); return res.json(docs); }, [ {item1}, {item2}, {item3} ] If so the…
-
-1
votes1
answer39
viewsQ: Displaying the database error in fetch
Good morning. I want to display the 400 error on front(RN) that back(Node) provides, using fetch. function add(){ fetch(`http://localhost:3000/AOTT7C1TT75a8s5RH1TR/${desc._id}/skaoskao`,{ method:…
-
0
votes1
answer58
viewsQ: Creating a like with Node.js and mongodb
I’m creating a like where the action can be done only once per person, I perform the action with the user X the first time and it works and if he tries again he can’t, but when someone else gives…