Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using express 3.x and node 1.9 with mongo and gridfs. To upload files I used gridfrom and it is working fine in normal form submit but not working in ajax based form submit. I followed few site but no help. http://www.davidpirek.com/blog/nodejs-html5-file-uploader

var gridform = require('gridform'),
    mongoose = require('mongoose'),
    mongo,
    db,
    app;


exports.upload_file = function(req, res){
    var conn = mongoose.createConnection();
    conn.open('localhost', 'employee', 27017, function (){
        db             = conn.db;
        mongo          = mongoose.mongo;
        gridform.db    = db; 
        gridform.mongo = mongo;    

        if ('POST' == req.method){              
        var form = gridform();  

      form.parse(req, function(err, fields, files) {
        res.end("File ID:" + files.text.id);
        });
     }
    });
}

The above code is working fine for normal form request. But not ajax form request. Below is my client side ajax call.

Client Side

jQuery("form#someform").change(function(event){
    var formData = new FormData();
    formData.append("filePath", document.getElementById("filePath").files[0]);
    var xhr = new XMLHttpRequest();
    xhr.addEventListener("load", function (evt) {
        var obj = jQuery.parseJSON(evt.target.responseText);
        window.location.hash = 'File';
        MVC.message.show({text: obj.message, hideDealy: 2000});
      }, false);
    xhr.open("POST", "/upload_file");
    xhr.send(formData);
});
share|improve this question
what error are you getting? – GianPaJ Nov 5 '12 at 10:23
There is no error. The control is not going inside to the form.parse(... method – Jak Nov 8 '12 at 6:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.