Giter Site home page Giter Site logo

Comments (2)

jet-lee-m avatar jet-lee-m commented on June 16, 2024

So I think, I found the code part that makes the problem.

In background-http.ios.js line 125 - 150 - the MultiMultiPartForm object generates the file wrong?

`

   Session.prototype.multipartUpload = function (params, options) {
    var MPF = new MultiMultiPartForm();
    for (var i = 0; i < params.length; i++) {
        var curParam = params[i];
        if (typeof curParam.name === 'undefined') {
            throw new Error("You must have a `name` value");
        }
        if (curParam.filename) {
            var destFileName = curParam.destFilename || curParam.filename.substring(curParam.filename.lastIndexOf('/') + 1, curParam.filename.length);
            MPF.appendParam(curParam.name, null, curParam.filename, curParam.mimeType, destFileName);
        }
        else {
            MPF.appendParam(curParam.name, curParam.value);
        }
    }
    var header = MPF.getHeader();
    var uploadFile = MPF.generateFile();
    if (!options.headers) {
        options.headers = {};
    }
    console.log("bla: "+destFileName);
    options.headers['Content-Type'] = header['Content-Type'];
    var task = this.uploadFile(uploadFile, options);
    task._fileToCleanup = uploadFile;
    return task;
}

`

In MultiMultiPartForm().generateFile() the fileData is null:

`

        if (this.fields[i].filename) {
            var fileData = NSData.alloc().initWithContentsOfFile(this.fields[i].filename);
            combinedData.appendData(fileData);
            results = CRLF;
        }

`

I think thats the problem :(

from nativescript-background-http.

jet-lee-m avatar jet-lee-m commented on June 16, 2024

I found the solution...
Really important in the multipartUpload() method set the filename without "file://" !!!!

/Users/marouane/Library/Developer/CoreSimulator/Devices/E4E0B1BF-9BBC-4A3F-9497-622B87DA8F82/data/Media/DCIM/100APPLE/IMG_0003.JPG

instead of:

file:///Users/marouane/Library/Developer/CoreSimulator/Devices/E4E0B1BF-9BBC-4A3F-9497-622B87DA8F82/data/Media/DCIM/100APPLE/IMG_0003.JPG

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.