0

ストリームではなくファイルを出力するようにコードを変更しました。IT は私に tmp パスを提供し、fs.readFile を使用すると、文字列に変換されたときのデータは次のようになります。

fileUpload=Resume_BrianInoa.pdf

私はhapijsサーバーにファイルを投稿しています。これは投稿を処理する私のルートです:

  server.route({
   method: 'POST',
   path: '/convert',
   config: {
        payload: {
           output:'file',
           maxBytes:209715200,
            parse: false,
            allow: 'application/x-www-form-urlencoded'
        },
        handler:function (request, reply) {

           console.log('path : ' + request.payload.path);
         //   request.payload["fileUpload"].pipe(fs.createWriteStream("test"));
             fs.readFile(request.payload.path, function (err, data) {
                if(err)
                   console.error(err);
                else
                   console.log(data.toString());
               // I want to rewrite the file to a new folder here 
               // Then convert it using imageMagick's command line tool
               //  var newPath = __dirname + "/uploads/" + "newFile.txt" ;
               //  fs.writeFile(newPath, data, function (err) {
               //    console.log(err);
               //    reply('done');
               //  });

             });
          }
   },

これは私の request.payload です

path : /tmp/1415580285921-24240-2cc7987f4fd124ac

私は実際に /tmp/ フォルダーを確認し、ファイルを開いた唯一のものを開きました

/tmp/1415580285921-24240-2cc7987f4fd124ac

has is fileUpload=Resume_BrianInoa.pdf ファイルが正しくアップロードされない

私のフォームのhtmlコード

<form action="./convert" method="post">
<input type="file" name="fileUpload" id="fileUpload" enctype="multipart/form-data" class="form-control">
<button class="btn">Submit</button>
</form>
4

1 に答える 1

3

要約すると、htmlは次のようになります-

<form action="./convert" method="POST" enctype="multipart/form-data">
    <input type="file" name="fileUpload" id="fileUpload" class="form-control"> 
    <button class="btn">Submit</button>
</form>

そしてあなたのhapiルート

   server.route({
       method: 'POST',
       path: '/convert',
       config: {
            payload: {
               output: 'file',
               maxBytes: 209715200,
               //allow: 'multipart/form-data',
               parse: true //or just remove this line since true is the default
            },
            handler:function (request, reply) {   
               console.log('fileUpload path : ' + request.payload.fileUpload.path);
            }
       },
   });
于 2014-11-10T02:56:58.067 に答える