这就是我所拥有的。
./ upload>通过POST请求将现有本地音频文件上传到./post_receiver
./ post_receiver>接收POST请求并回复HTML页面
./ record>录制要下载到本地或通过AJAX POST请求上传到./post_receiver的音频文件
他们工作正常,但我不想使用AJAX。我更喜欢新的HTML页面。我知道如何通过document.createElement(" form"),document.body.appendChild()和submit()来使用传统形式。但是,似乎它不能像FormData那样保存音频文件。顺便说一句,我的服务器是Amazon EC2上的node.js,但我认为它不相关。
来自./record的非AJAX POST
<form method="POST" action="/audio" enctype="multipart/form-data">
<input type="file" name="audio" value="blob:address" filename="audio.wav">
</form>
Cannot read property 'filename' of undefined
TypeError: Cannot read property 'filename' of undefined
at router.get.html (./routes/index.js:11:74)
at Layer.handle [as handle_request] (./node_modules/express/lib/router/layer.js:95:5)
at next (./node_modules/express/lib/router/route.js:131:13)
at Object.<anonymous> (./node_modules/multer/lib/make-middleware.js:52:37)
at Object.immediate._onImmediate (timers.js:348:16)
at processImmediate [as _immediateCallback] (timers.js:330:15)
------WebKitFormBoundaryxh3BZE3s5vvxVQ1n
Content-Disposition: form-data; name="audio"; filename=""
Content-Type: application/octet-stream
------WebKitFormBoundaryxh3BZE3s5vvxVQ1n--
来自./record的AJAX POST或来自./upload的POST
<form action="/audio" method="post" enctype="multipart/form-data">
<input type="file" name="audio" required="">
<button type="submit">Submit</button>
</form>
------WebKitFormBoundary47iCp5HAMwe089e4
Content-Disposition: form-data; name="audio"; filename="audio.wav"
Content-Type: audio/wav
------WebKitFormBoundary47iCp5HAMwe089e4--
以下技巧有效,但它仍然在同一页面上,这不是我想要的。
document.open();
document.write(<XMLHttpRequest>.responseText);
document.close();
此外,像socket / stream / session / cookies这样的东西有点矫枉过正。我只是想保持简单,我希望有一种方法可以将FormData作为请求发送,让浏览器直接处理来自服务器的响应。如果无法做到这一点,请告诉我一个实现这一目标的简单方法。
欣赏任何想法和建议。谢谢。
答案 0 :(得分:0)
我遇到了同样的问题,这就是我最终要做的事情。我更改了我的POST处理程序,从返回重定向到返回主体中具有重定向URL的响应。然后我就这样做了(而不是写文档技巧):
redirectURL = <XMLHttpRequest>.responseText;
window.location = redirectURL;