Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

axios api post request

import qs from 'qs';
const data = { 'bar': 123 };
const options = {
  method: 'POST',
  headers: { 'content-type': 'application/x-www-form-urlencoded' },
  data: qs.stringify(data),
  url,
};
axios(options);
Comment

get request with axios

const axios = require('axios').default;

// Make a request for a user with a given ID
axios.get('/user?ID=12345')
  .then(function (response) {
    // handle success
    console.log(response);
  })
  .catch(function (error) {
    // handle error
    console.log(error);
  })
  .then(function () {
    // always executed
  });

// Optionally the request above could also be done as
axios.get('/user', {
    params: {
      ID: 12345
    }
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  })
  .then(function () {
    // always executed
  });  

// Want to use async/await? Add the `async` keyword to your outer function/method.
async function getUser() {
  try {
    const response = await axios.get('/user?ID=12345');
    console.log(response);
  } catch (error) {
    console.error(error);
  }
}
Comment

how to make a post request from axios

import axios from 'axios';

async makeRequest() {
  try {
    const response = await axios.post('your_request_url_here', {
    // Enter your body parameters here
    });
  }
  catch(e) {
    // Handle your error here
  }
}

// Axios returns a promise and hence you can use .then(), .catch for error
// handling if you don't want to use async/await(use try/catch for error 
// handling)
Comment

how to use post method axios

 const handleClick = async () => {
    let fd = new FormData();
    fd.append("name", name);
    fd.append("password", password);
    const rep = await axios
      .post("http://localhost/php/api/students/create.php", fd)
      .catch((err) => {
        console.log(err, "axios error");
      });
    console.log(rep.data);
  };
Comment

axios post method

const onSubmit = async (FormData) => {
  FormData.bFlats = meters;
  try {
    let res = await axios({
      method: 'post',
      url: 'http://localhost:5000/api/v1/buildings',
      data: FormData
    });

    console.log(res.data);
    if (res.data.status === 'success') {
      alert("Successfully Inserted");
      reset();
    }
  } catch (error) {
    console.log(error.response.data.message); // this is the main part. Use the response property from the error object
  }
}
Comment

Send Data Using Axios


import Axios from "axios";

var res = await Axios.post('/search', {searchTerm: 'searchTerm'});
Comment

axios send payload in get request

axios.get('/api/updatecart', {
  params: {
    product: this.product
  }
}).then(...)
Comment

Send Axios With Post

async    function send()
    {


        let data = new FormData();     
        data.append("title", "title ???");  
        data.append("note", "note");
        data.append("csrfmiddlewaretoken", '{{csrf_token}}') // 3
        let res =  await  axios.post("/blog/third", data);
        
     
console.log(res.data.my_data);
    }


def third(request):
    if request.method=="POST":
        title = request.POST["title"] 
        note = request.POST["note"] 
        
        
        data = {
                'my_data': title
        }
        
        return JsonResponse(data)
#much simpler than fetch
Comment

PREVIOUS NEXT
Code Example
Javascript :: add object to another object javascript 
Javascript :: google pay in react js 
Javascript :: js value to boolean 
Javascript :: angular post data not sending 
Javascript :: number format reactjs 
Javascript :: todo list javascript 
Javascript :: concate array to string javascript 
Javascript :: modal multiple images 
Javascript :: jquery scroll to bottom of div 
Javascript :: loopback 
Javascript :: js Destructuring arrays and objects 
Javascript :: byte array to json 
Javascript :: json object in html page 
Javascript :: react native image picker 
Javascript :: 10 to the power of negative n 
Javascript :: promise async await 
Javascript :: string object javascript 
Javascript :: js number in range 
Javascript :: remove last character from string javascript 
Javascript :: replace spaces with dashes 
Javascript :: knex insert multiple rows 
Javascript :: react native intro slider 
Javascript :: how to add variables to an array in javascript 
Javascript :: get last element from array javascript 
Javascript :: how to turn of autocomplete in react hook form material ui 
Javascript :: slice in js 
Javascript :: Find Largest Number by function by javascript 
Javascript :: could not find react-redux context value; please ensure the component is wrapped in a <Provider 
Javascript :: canvas js in react 
Javascript :: append array in array 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =