Giter Site home page Giter Site logo

Comments (3)

PanayotCankov avatar PanayotCankov commented on June 16, 2024

The upload is intended to work with big files and uses APIs in iOS that allow background upload. However they use the file as body for the request. To allow multipart/form-data uploads we will have to save temporary file with the form fields. Can't you encode these in the URL or the headers?

from nativescript-background-http.

mikeres0 avatar mikeres0 commented on June 16, 2024

It may sound stupid but I'm not entirely sure how to do so. I am trying to mimic a HTML form upload but via. Nativescript. I need to pass in parameters such as an upload id along with the file that I'm uploading so my server knows where to store the uploaded file.

from nativescript-background-http.

mcxolani avatar mcxolani commented on June 16, 2024

I used the old way of passing params

//https://www.example.com?var1=var1&var2=var2

var request = {
        url: "https://www.example.com?var1=var1&var2=var2",
        method: "POST",
        headers: {
            "Content-Type": "application/octet-stream",
            "photo": "image.jpg"
        },
        description: description
    };

from nativescript-background-http.

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.