All Questions
1,581 questions
0
votes
0
answers
81
views
vue axios.post method is neither doing anything nor throwing an error
I have a vue frontend with a flask backend and in addition a c++ camera backend. All of this has been working before. Now I switched to another computer and I´m using a different camera backend and ...
0
votes
1
answer
77
views
How to make a HTTP call from a Vue.js app that includes a list of files to upload
I need to call a Spring controller that has a @RequestPart parameter of type List<MultipartFile> and expects a list of files. The front end application is written in Vue.js and so far I have ...
0
votes
1
answer
66
views
OPTIONS Request made to domain root (/) on ddev nginx throws a 405 - We see access.log but the request is not forwarded to index.php
Edit
Corrected a couple of assumptions with more testing (and altered title to reflect). The issue seems to be specific to the nginx config on DDev, with the server not correctly passing "OPTIONS ...
0
votes
0
answers
54
views
Object value is changed during the request to the backend
I hope you can help me, because I couldn't find a solution to my problem. I work with Vue.js in the frontend and Laravel in the backend. When sending a POST request, the following problem occurs:
...
2
votes
0
answers
58
views
Problem to send my formData instance via axios with content-type multipart/form -data
I'm working on vue3 and I want to send my form data which may contain a file image to my API via axios request but I still have a problem. If I inspect the formData instance, all values are present ...
-2
votes
1
answer
410
views
Cors Issue in VUE JS 3 on API call from Localhost to Third Party API
I have been facing CORS issue form many days. I have applied all the solutions that are available in Stack Overflow, but nothing helpful for me. Can anyone tell me what is going wrong with my code? I ...
1
vote
0
answers
55
views
Vue.js Axios Request Aborted When Calling Multiple Vuex Actions Sequentially
I'm working on a Vue.js application using Vuex for state management. I encountered an issue where a network request gets aborted when I sequentially call two Vuex actions. Here’s what I’ve observed:
...
0
votes
0
answers
156
views
Cannot read properties of undefined (reading 'text') Vue js
I can console.log (inside the method) the 'newQuestion' object/'answers' array with no issue but when running the app I am met with the "cannot read properties of undefined" error. The ...
0
votes
0
answers
89
views
My Vue.js code is displaying Strapi (api) data correctly, but when I refresh the page i have a TypeError : $setup... is undefined
I am displaying some Strapi data using Vue3, and when i save the file it displays it correctly on the page, but if i refresh it i have a TypeError error : Uncaught (in promise) TypeError: $setup....
1
vote
1
answer
33
views
Vue 2 + Axios - Show / Hide div as result of Axois request result
I have a div in my html page
<div class="ui-alert" v-show="isCaptchaError"> ... </div>
isCaptchaError - initialized in my Vue instance:
const form = new Vue({
el: '...
0
votes
0
answers
27
views
The _retry property doesn't work in axios
I'm using axios version 1.6.7 but with an error 401 in the interceptor the refresh request is sent endlessly, an endless loop of requests is sent
const axiosParams = {
baseUrl:
process.env....
0
votes
0
answers
52
views
Laravel Vue axios endpoint fetches data and diplays in console log BUT not in Vue template
I have a laravel 8 project which is recently upgraded from version 7. I have updated webpack and package.json etc..
Here is a barebone structure of my Vue template which is supposed to display ...
0
votes
1
answer
164
views
Highcharts is not being rendered in an basic vue js app. Empty div being returned
I have a simple Vue js app. I am trying to render highcharts into the app. I know I am getting data from the database that I am not using in there chart tight now. But I will later. Right now I just ...
-1
votes
1
answer
1k
views
How to fix CORS for front-end/client request using axios?
I made a simple video player and want to use different src files. None of the files are on the same server as the application.
The video code is like this:
<video preload="metadata" @play=...
0
votes
2
answers
47
views
How to get the form data from the modal-component into the submithandler
I'm working on a VUE app. Part of the app is to show a table (team) with information from the backend (by axios / django rest_framework). This all works.
When I click "nieuwe categorie" the ...