Code Monkey home page Code Monkey logo

Comments (2)

al041265 avatar al041265 commented on August 21, 2024 1

Hi, sorry for the wait, at the end I couldnt use the integrated methods for upload, so I ended up using native post request to the backend endpoint.

` let formData: FormData = new FormData();
formData.append('file', this.file, this.file.name);
let headerst = new HttpHeaders();
headerst.append('Content-Type', 'multipart/form-data');
headerst.append('Accept', 'application/json');
var i: number = this.caso.idCaso;
var url = 'https://myapiurl.com/api/containers/' + i + '/upload'
this.hidden = false;
this.http.post(url, formData, { headers: headerst, reportProgress: true, observe: 'events' }).pipe(map((event: any) => {
switch (event.type) {

    case HttpEventType.UploadProgress:
      const progress = Math.round(100 * event.loaded / event.total);
      this.value = progress;
      console.log(progress)
      return { status: 'progress', message: progress };

    case HttpEventType.Response:

      console.log("FINISHED")
      return event.body;
    default:
      console.log("unhandled")
      return `Unhandled event: ${event.type}`;
  }
}))`

from loopback-sdk-builder.

jgwinner avatar jgwinner commented on August 21, 2024

Did you get any further?

I haven't tried uploading files, but may be doing this shortly.

If I do, I'll try to come back here and update it.

    == John ==

from loopback-sdk-builder.

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.