Code Monkey home page Code Monkey logo

Comments (3)

daffl avatar daffl commented on June 23, 2024

You can set headers by adding a headers property in params. In you case calling

client.service('upload').create(data, {
  headers: {
    'content-type': 'multipart/form-data'
  }
});

from feathers-rest.

marshallswain avatar marshallswain commented on June 23, 2024

I missed this in the docs, earlier, but looks like it's in place on this page: https://docs.feathersjs.com/api/rest.html#client

from feathers-rest.

 avatar commented on June 23, 2024

I might have said hooks, but whether you do it in the create call or a before hook is the same.
I don't know how I missed this earlier when I was looking for prior issues, but @ekryski puts it well. #102 (comment)
The guide on file uploading works well because it uses a native form element, IIRC.

In superagent, you can either do .set('enctype', 'multipart/form-data') or construct a FormData (which the library itself does.) ladjs/superagent#746 Nevertheless there is a way to do it in superagent, so I guess I will specifically opt out of the upload service create call in favor of doing a direct request like that.

https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4 also defines behavior of the multipart/form-data content type. User agent being the browser, when using a native form element with enctype='multipart/form-data', it is the browser that does the work of constructing the payload and updating the content-type header with a boundary. This is also what Postman does, and superagent deals with this by simulating using FormData.

I do think this can be closed because there is a separate open issue regarding this already. Will update this with a relevant solution if I come up with one, though.

from feathers-rest.

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.