Skip to main content

All Questions

Tagged with
0 votes
0 answers
136 views

Vue 2 app running on HTTPS, trying to call (axios) a web sercice on same iis server http, call is https instead in dev tools=

Vue 2 app (with okta auth) running on iis dev server HTTPS, Trying to call (axios) a webApi (.netcore) web service on same iis server http, call is https instead, does it get converted? I literally ...
Eric Brown - Cal's user avatar
2 votes
3 answers
3k views

Why does axios always convert https into http when making request?

I am working with Laravel 5.8 and out-of-the-box pre-configured Vue.js. For making a GET/POST/PUT/DELETE request within Vue.js components, I am using AXIOS as following: import axios from 'axios' ...
O Connor's user avatar
  • 4,432
0 votes
2 answers
351 views

How to send a axios http put request only if there is a change on the object in Vue JS?

What is the logical way to send an axios http put request only if there is a change on the object and its properties? I'm finding that I am firing unnecessary http requests which is a waste on the ...
Jquestions's user avatar
  • 1,730
2 votes
2 answers
1k views

Axios not making request, no result, no error

I have a problem with an axios put request in vue2 the following code is used to save an update form. there are 2 flows in which this method is called. you click on a organisation, the window....
Ricardo van Laarhoven's user avatar
11 votes
2 answers
6k views

Axios interceptor token header is present in config but not in request headers

I've created axios interceptor which is responsible for adding token before every request is send to my rest API. import axios from 'axios'; import { store } from '../store/store'; export default ...
BT101's user avatar
  • 3,856
0 votes
1 answer
95 views

Post axios request in Vue2 callback isn't working correctly

In my Vue2 application I am preforming a POST request with axios: window.axios.post(`/clients/${this.getClientId}/connection`, { clientType: newClientType, url:...
Ms123Robot's user avatar
0 votes
0 answers
518 views

Laravel vuejs:ajax post route error

I've implemented a post ajax request using axios and vue library ,everything works fine when i am running in development mode (id localhost:8000). But when i run from public folder(ie localhost/...
Jabaa's user avatar
  • 1,763
0 votes
2 answers
404 views

Vue.js Axios bug HTTP request change my array but don't show change

I have a very strange problem in vue.js/axios. Scenario 1 : clear my products variable BEFORE send an HTTP request (see "<<<<< SCENARIO 1" mark). Then set products variable with a new ...
riwanab's user avatar
  • 275
4 votes
2 answers
6k views

Performing multiple requests Axios (Vue.js)

I am trying to perform two, non-concurrent request, but would like to use data from my first request before performing a second request. How can I achieve getting the data from the first request then ...
A_A's user avatar
  • 340