Giter Site home page Giter Site logo

How to use formdata? about fetch-it HOT 3 CLOSED

simman avatar simman commented on July 2, 2024
How to use formdata?

from fetch-it.

Comments (3)

dig3 avatar dig3 commented on July 2, 2024

I just tried some code to check how FormData should work with fetch-it and I realized that probably isn't working :(.

Code:

let form = document.forms[0]
// make it an array
form = [].slice.call(form)
console.log(form.filter(e => e.hasAttribute('name')).map(e => `${e.getAttribute('name')}=${e.value}`).join('&')) // => "q=hola"

let fd = new FormData(form)
console.log(JSON.stringify(fd) // => "{}"

So I guess that if you pass a FormData object to post, put or patch it won't work since https://github.com/tryolabs/fetch-it/blob/master/src/fetch-it.js#L24 . Maybe you can specify a body in the options object instead of passing a data object.

I didn't test it in fetch-it yet, but I will.

from fetch-it.

dig3 avatar dig3 commented on July 2, 2024

Hey @simman, did it worked passing FormData in options.body? Anyways I think I'll have to fix passing a FormData object in the data param.

from fetch-it.

simman avatar simman commented on July 2, 2024

I am used in ReactNative, I have modified the source code

deleted : (Because it doesn't work)

import 'isomorphic-fetch';

modified:

const DEFAULT_CONFIG = {bodyType: 'formData'};
constructor(config) {
    this.config = config || DEFAULT_CONFIG;
    this.middlewares = [];
  }
if (!!data) {
    if (options.bodyType == 'json') {
      options.body = global.JSON.stringify(data);
    } else if (options.bodyType == 'formData') {
      options.body = querystring.stringify(data);
    } else {
      options.body = data;
    }
}

from fetch-it.

Related Issues (4)

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.