GithubHelp home page GithubHelp logo

Comments (5)

skellock avatar skellock commented on August 20, 2024 31
const uploadImage = (pathToImageOnFilesystem) => {
    const form = new FormData()
    form.append('image[image]', {
      name: 'omgitsme.jpg',
      uri: pathToImageOnFilesystem,
      type: 'image/jpg'
    })
    const headers = {
      'Content-Type': 'multipart/form-data'
    }
    return api.post('/endpoint/to/upload', form, { headers })
  }

Try something like this.

from apisauce.

tmaly1980 avatar tmaly1980 commented on August 20, 2024 2

@skellock Unfortunately, I am having ZERO luck figuring this out. I've looked through axios' documentation and tried several approaches, none of which have worked. Most of the examples out there use fetch(). I'm trying to get it working with react-native-image-picker. Every example I'm seeing with axios is for the web, and I'm not having luck getting that to work in RN. ie:

https://github.com/mzabriskie/axios/blob/master/examples/upload/index.html

I've tried infinitered/ignite#497 and all I get is '[object Object]' in the payload (confirmed on the server)

from apisauce.

skellock avatar skellock commented on August 20, 2024

Hello. Have a look at the axios docs. It really depends on your API, however, most likely you'll end up filling in a FormData object, and posting that up.

Lemme know if you get stuck.

from apisauce.

nuhbye avatar nuhbye commented on August 20, 2024

I am using apisauce for all my api calls but for uploading images, I ended up using https://github.com/kamilkp/react-native-file-transfer. This kind of is not a good solution, I would have loved to do all through the single way.
Will try to do it the way suggested above by skellock

from apisauce.

tmaly1980 avatar tmaly1980 commented on August 20, 2024

@skellock OK good to know. Seems my issue is actually caused from jhen0409/react-native-debugger#38

from apisauce.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.