Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

I'm encountering an issue where a cart UI isn't loading data after a reload, even though the data is stored in local storage. I'm stranded on this can one help me on this have tried troubleshooting ...
Marcocholla01's user avatar
0 votes
2 answers
45 views

I'm trying to implement a system for uploading photos for a car listing project that I'm building. I'll be honest, this is the first time using multer and I can't find what is wrong with it. I've been ...
Tecleanu Ionut's user avatar
0 votes
1 answer
175 views

I'm currently working on part 3c, Saving Data to MongoDB. My phonebook app is able to fetch data from the MongoDB database while on the local server in development mode, but not while on the Render ...
Mafeng Pam's user avatar
1 vote
0 answers
27 views

I don't know if something is wrong with my code @api_view(['POST']) def sign_up(request): user_serializer = UserSerializer(data=request.data) if user_serializer.is_valid(): user = user_serializer....
Brandon Khumalo's user avatar
0 votes
2 answers
127 views

I am working on a MERN app. The app is working well on the localhost, both client and server. I deployed the app with some production environment changes like CORS, etc. I have solved many errors in ...
AayushLad's user avatar
0 votes
0 answers
31 views

How do you work on existing web app databases that constantly get modified in realtime Let's assume you have a react application with postgres as your database. The App is an ecommerce website that ...
Nicolas Körner's user avatar
0 votes
0 answers
86 views

I'm trying to fetch my token from this endpoint on mastercard (https://api.finicity.com/aggregation/v2/partners/authentication) from my react app and I keep getting the error "ccess to fetch at '...
Tolu's user avatar
  • 1
0 votes
0 answers
50 views

[The templates section in settings.py] TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'backend', 'dist')], '...
Maheer AB's user avatar
0 votes
0 answers
107 views

I am trying to write a terminal emulator in a react app, for a personal coding website. I'm trying to create basic functionality, namely 'pwd', 'ls', 'cat' and 'cd'. I have a react component that does ...
James's user avatar
  • 19
1 vote
1 answer
458 views

I have trouble figuring out how to permit browser to use my microphone. I use the npm-speech-recognition library. The code i have is as follows: import React, { useEffect } from "react"; ...
Mujin's user avatar
  • 39
0 votes
0 answers
116 views

*I am working on a React application where I am fetching notes from an API. However, I am encountering two errors: GET http://localhost:5000/api/notes/fetchallnotes 401 (Unauthorized): This error ...
ADITYA RAJ's user avatar
0 votes
1 answer
297 views

I have a monolithic full stack app, that i am trying to refactor to a microservice architecture. In the monolithic architecture, I have the following models: import mongoose from "mongoose" ...
NewJS's user avatar
  • 9
1 vote
4 answers
26k views

I am using mongoose to connect the MongoDB with my backend. const connectDB = async () => { try { const conn = await mongoose.connect(process.env.MONGO_URI, { useNewUrlParser: true, ...
Anantha krishnan's user avatar
1 vote
1 answer
163 views

I'm trying to create a table that will display the rows of a database called patients and I have created this using Django as the back-end and react as the Front-End. When I try to implement the code ...
Keegan's user avatar
  • 33
1 vote
0 answers
55 views

I'm new to the next.js 13 and I've been learning since a month and when I'm trying to integrate the sign in with google with next-auth in my next.js project I was getting errors. I've tried using app/...
Siva Sri Harsha Suthapalli's user avatar
-1 votes
1 answer
293 views

My goal is to send an html fragment wrapped in a string in my react app, to emailjs, an email api that holds your template. my code const getMessage = () => { let base = "localhost:3000/...
mikewowski's user avatar
0 votes
1 answer
257 views

Here is the code : let count = 0; function GenerateValue(tasks) { count += 1; let someValue = Math.random() * 10; tasks.push({key : count, value : someValue}); console.log(tasks); } ...
Jayant Verma's user avatar
0 votes
0 answers
129 views

So to keep it brief, I have a fullstack application which is deployed on Railway. Everything worked perfectly. Then I decided to integrate celery so I can run some tasks in background. Now in order to ...
beni14's user avatar
  • 49
1 vote
0 answers
63 views

Warning for Overlay Trigger I have used OverlayTrigger component of react-bootstrap, it gives warning as shown in the image above. Code: <OverlayTrigger delay={{ show: 250, hide: 400 }} overlay={&...
Shaan Srivastava's user avatar
-2 votes
1 answer
762 views

I am new to the full-stack and specifically NextJs. I had a small chance to develop a simple blog post web app using MERN stack. while developing the app, I separated the frontend and backend folders ...
JustDev's user avatar
  • 55
0 votes
2 answers
110 views

ERROR Request failed with status code 404 AxiosError: Request failed with status code 404 at settle (http://localhost:3000/static/js/bundle.js:167104:12) at XMLHttpRequest.onloadend (http://localhost:...
Tanu Bajarh's user avatar
0 votes
1 answer
464 views

{ "name": "frontend", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { &...
shivam saxena's user avatar
1 vote
0 answers
48 views

I was trying to add the functionality, that when I click on the selected radio button again, it should get deselected, but my logic is not working, that what I have did in handleRadioChange function. ...
Himanshu Mehra's user avatar
0 votes
1 answer
50 views

How to fix error "searchParams.userId" And I can’t upload the project to either Netfly or Vercel https://www.youtube.com/watch?v=c_-b_isI4vg&t=536s&ab_channel=CodeWithAntonio I did ...
DimaBerko's user avatar
0 votes
0 answers
38 views

I have a one form divided in to two parts. I want validation after page load. First show only three field and I want the two field validated so if user clicks without entering data in the two fields,...
Vali 's user avatar
0 votes
1 answer
127 views

I'm new to using handlebars and struggling to figure out why the html I want won't render at all. Handlebars seems to only throw me blank pages. I suspect it has something to do with the {{{body}}} ...
Satvik Agnihotri's user avatar
0 votes
2 answers
1k views

I am trying to configure the flask backend to react front end. Both of these are running in different ports so I am importing CORS to allow config the backend to work with an application that's ...
Rupakshi's user avatar
0 votes
1 answer
492 views

This is a beginner project I'm working on which utilizes react to animate pixel art. It functions by using a brute force method of iterating through a array to set the images of the cat. A timer is ...
Matt Xu's user avatar
0 votes
1 answer
250 views

I'm currently working on NextJS, and I can't able to import the any of the images which are present in the public folder. I can go through folders but it is not fetching the images. I used the ...
Pratik Tillekar's user avatar
0 votes
0 answers
30 views

So I have some React (TS) code and I am trying to upload an image from the frontend to the backend, as well as send texts. I am able to send texts (ie, I get Text sent successfully logged to the ...
mukund's user avatar
  • 9
1 vote
3 answers
7k views

I have deployed a nodejs server on render as free services. I have an API in my project to upload an image. After upload it appears on my application or on my interface for sometime. After 5 to 10 ...
Aryan Singh's user avatar
1 vote
1 answer
297 views

I'm trying to learn how to use Loaders in React-router-dom and can't get two parameters working. export const loadConvoMsg = ({conversationId, courseId}) => async () => { console.log('...
bluelemur's user avatar
1 vote
1 answer
53 views

if select option select fixed value then input field type rupees value support only 20 digit with rupees symbol. if select percentage then replace rupees symbol with percentage of symbol and value ...
AIYUB KHAN's user avatar
1 vote
1 answer
240 views

I'm having a very peculiar issue with my app... I have OAuth 2 implemented with GitHub, Discord, and Google. Google and Discord work, but when I attempt with GitHub, it signs me into my Discord. This ...
Ryan Reeves's user avatar
0 votes
0 answers
182 views

I am learning MongoDb and was following a playlist and did everything accordingly. I am trying to connect database with Mongoose. But when I try to run nodemon I get the following error. Please be ...
Sahil's user avatar
  • 11
0 votes
1 answer
204 views

I am currently developing a web application that includes user registration functionality. However, when I try to register a new user, I encounter an "Error 403" response in the console. ...
user16009462's user avatar
1 vote
0 answers
45 views

I'm very new to react. There is a place where I'm stuck. I have action buttons. When I press one, firstly it is checked whether it has been liked before, and then I use useMutate to remove the like if ...
merve naz mumcu's user avatar
0 votes
1 answer
578 views

I am using Strapi V4 to save all the data of my form. In my strapi architecture there is a file/image field and others are text field. I want to link this image and other entries. currently when I ...
JASIM CHOUHAN's user avatar
0 votes
2 answers
41 views

userModel.js userRoute.jsa licenseMiddelware.js i want to add new property (photo) to the users in database mondoDB but when i run my code its add new section in users (mongoDB) contains only the ...
Abd_Elrahman Nawar's user avatar
2 votes
2 answers
58 views

I have a bit of experience with react and express. I am trying to build a chat app using socket io. I am first time using it. But I think I got it a little bit after reading some documentation and ...
Nabil Ahmed's user avatar
1 vote
0 answers
536 views

Here is the code im using in a top level Weather Component. I'm fetching on the client side using create-react-app on localhost:3000. const fetchWeatherData = async () => { try { ...
Josiah Schwahn's user avatar
0 votes
3 answers
165 views

<MultiSelect id="MultiSelect-1" label="Label" onChange={function noRefCheck(){}} options={[ { label: 'Checkbox 1', name: 'accounts', value: '...
AliNaseer's user avatar
0 votes
1 answer
137 views

i receive 400 bad request when i try to add a task on my website! need help =( i see people also returning all the page return() in every function, should i do the same? or i can leave the return at ...
anfield's user avatar
  • 41
0 votes
0 answers
112 views

I am following a full-stack react course, and I am using Postman for the first time. I have tried several times to do a GET request, but I keep getting the same error: Error: getaddrinfo ENOTFOUND ...
Hillary's user avatar
  • 11
0 votes
0 answers
19 views

If anyone know how to do it help me. in this program i used graphql and apollo-server-express Expexting the solution to run graphql and apollo-server-express and error of npm start.I am facing problem ...
Innayat Kaur's user avatar
0 votes
1 answer
201 views

I have Layout.js, this is the Code import Layout from '../components/Layout'; export default function Home(){ <Layout> test </Layout> } So i want to use ...
ikhsan's user avatar
  • 11
0 votes
1 answer
21 views

This is my front end, where I use Formik to create a form and get input from the user. import React from 'react' import {Formik, Form, Field, ErrorMessage} from "formik" import axios from &...
Shubh Savani's user avatar
0 votes
0 answers
2k views

Uncaught (in promise) SyntaxError: Unexpected end of input const responseBody = await response.json(); here i am taking json response from a api and then object to display card on my website but this ...
chetan jangid's user avatar
-2 votes
1 answer
676 views

Since this is the first private project that I have done in Next.js I am wondering how do I host it with backend and database. All tutorials are about next.js alone, I am not sure what should I use in ...
devos's user avatar
  • 13
0 votes
1 answer
529 views

I got the token inside the cookies when hit the code from postman but didn't get when hit the same api with react. this is my code for backend enter image description here export const signin = ...
Shivam Kumar's user avatar

1
2
3 4 5
8