backend Questions

2

Solved

I am making an application in Flutter, which requires to save the daily data that the users input in the application. The user has 10 daily actions to do. The app needs to: Save the daily data tha...
Hogtie asked 18/3, 2022 at 16:15

14

Solved

A bunch of similar questions answered before but none of them seem to fix my problem. No problem in adding the first user. However, the username doesn't display the records and gives error on addin...
Byway asked 10/9, 2020 at 11:0

2

Solved

When hosting a .NET core web application in IIS, you can choose between in process and out of process hosting model. Except for better performance by using in process, what are some pros and cons...
Sycophant asked 13/12, 2019 at 10:32

7

In pydantic is there a cleaner way to exclude multiple fields from the model, something like: class User(UserBase): class Config: exclude = ['user_id', 'some_other_field'] I am aware that fol...
Reikoreilly asked 5/1, 2022 at 3:31

7

Solved

I am trying to connect to a PostgreSQL Database that I've set up in Heroku. const { Sequelize, DataTypes, Model } = require("sequelize"); // DB Configuration const sequelize = new Sequel...
Skeptical asked 20/11, 2019 at 23:32

2

I am creating a web app where there is an option for authenticated users to upload pictures. I am confused as to whether its better to do it on the front end or backend. I have already implemented ...

4

When I am trying to connect with mysql 8.0 I am getting this error. How can I fix this ? code: 'ER_NOT_SUPPORTED_AUTH_MODE', errno: 1251, sqlMessage: 'Client does not support authentication proto...
Prang asked 24/6, 2018 at 9:58

4

Solved

I want to setup a POST route in my api folder using next.js, And I'm sending the data to the route but I can't parse the data to actually save it in the database. what is the best way to handle POS...
Berzelius asked 22/3, 2021 at 3:1

4

mailchimp.setConfig({ apiKey: "YOUR_API_KEY", server: "YOUR_SERVER_PREFIX", });
Trip asked 23/6, 2022 at 14:41

3

Solved

I'm Aadarshvelu! Recently Started Testing My WebApp Code Using Jest With Puppeteer. So I Have Page Which All Credentials Have Been Filled With Puppeteer.But When SummitButton('signBtn') Clicked POS...
Brachial asked 1/11, 2019 at 16:22

4

Solved

So I am following an online course on React Native from Mosh at Code with Mosh, and despite some things that have been outdated and I've had to find work arounds on, everything has been going great...
Chiasmus asked 14/11, 2023 at 14:10

5

Solved

I'm using NestJS,I installed @nestjs/config module using the command : npm i --save @nestjs/config I got this error : Module '"@nestjs/config"' has no exported member 'ConfigModule' thi...
Bioscope asked 15/3, 2022 at 22:5

4

Solved

According to this article gcc uses several intermediate formats before generating code. I read that the GIMPLE format uses three address code, which seems to be the easiest intermediate language to...
Morvin asked 1/2, 2012 at 16:26

2

I am trying to understand the correct flow for mobile app / server app - auto renewable subscriptions. Since verifyReceipt has been marked as deprecated, I am struggling with the question of how I ...
Olive asked 3/7, 2023 at 17:5

4

Solved

I am using Mongoose to access to my database. I need to use transactions to make an atomic insert-update. 95% of the time my transaction works fine, but 5% of the time an error is showing : "Give...
Abruzzi asked 21/10, 2019 at 14:4

6

Solved

My sveltekit app has a form which sends a POST request to server. The app is working fine on dev server but when I build and run the app it fails to send the form data via POST request. It shows th...
Audient asked 20/9, 2022 at 18:7

3

Solved

I'm using aws s3 buckets to store my assets. When any of the existed assets is changed from the front-end (eg: client changed his profile image) the backend I made will change the asset only withou...
Judithjuditha asked 12/3, 2022 at 14:51

2

My composer.json file { "name": "laravel/laravel", "description": "The Laravel Framework.", "keywords": ["framework", "lara...
Budd asked 14/11, 2023 at 5:0

3

Solved

I am having some issues with error handling using ExpressJS and Prisma. Whenever a Prisma Exception occurs, my entire Node application crashes, and I have to restart it. I have done some googling a...
Notus asked 15/5, 2021 at 12:36

8

When I try to run an application it fails to start and throws this exception. This method cannot decide whether these patterns are Spring MVC patterns or not. If this endpoint is a Spring MVC endp...
Olympia asked 1/8, 2023 at 8:16

2

Solved

I am trying to use diesel for a project and I would like to have a "filterable" type. The idea is that you can go to /api/foo?id=10&bar=11 and it would return a struct Foo: struct Foo...
Malek asked 27/11, 2020 at 15:22

7

I know Next.js is front-end but when I used API of next.js it can response and can manage route or anything about back-end can do. Then I want to know "Next.js api is back-end ?"
Fractional asked 2/7, 2020 at 7:4

2

I put using Serilog on the top within each class where I want to add logs. But, when I want to add logs in Program.cs in order to log the information / error for DB connection, I find that the logs...
Biplane asked 8/7, 2023 at 4:32

3

Solved

I am dealing with a strange behaviour regarding a MultipartFile. My project is a Spring Boot backend that receives a text file. This text file comes in as a MultipartFile. I than want to send this...
Adaptive asked 6/12, 2019 at 13:44

3

Solved

I have a problem with pathways docker-compose, when I try build project with only docker build, it works great, but I mustn't use docker build, I have to use docker-compose. When I use docker-compo...
Kerwinn asked 8/7, 2021 at 20:23

© 2022 - 2024 — McMap. All rights reserved.