简体   繁体   中英

upload and view a .ppt or .pdf file in collaborate whiteboard using node js

How do I upload and view a .ppt or .pdf file in collaborate whiteboard using node js. Can anyone tell me which API should I use?

You should Use Formidable api for Upload and View

Server.js

var formidable = require('formidable'),
http = require('http'),
util = require('util'),
fs = require('fs');
http.createServer(function(req, res) {
    if (req.url == '/view' && req.method == 'GET') {
        fs.readFile('./temp.pdf', function(err, file) {
            res.writeHead(200, {"Content-Type" : "application/pdf" });
            res.write(file, "binary");
            res.end();
        });
        return;
    }
    if (req.url == '/upload' && req.method == 'POST') {
        // parse a file upload
        var form = new formidable.IncomingForm();
        form.parse(req, function(err, fields, files) {
            fs.rename(files.upload.path, './temp.pdf');
            res.writeHead(200, {'content-type': 'text/html'});
            res.write('Received upload: <a href="/view">View PDF</a>');
            res.end();
        });
        return;
    }
    // show a file upload form
    res.writeHead(200, {'content-type': 'text/html'});
    res.end(
        '<form action="/upload" enctype="multipart/form-data" method="post">'+
        '<input type="file" name="upload" multiple="multiple"><br>'+
        '<input type="submit" value="Upload">'+
        '</form>'
    );
}).listen(80);

Formidable

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM