0
我實施這一解決方案將文件上傳到服務器:File Upload with Angular2 to Rest API從客戶端發送到服務器(快遞)訪問FORMDATA對象
我的問題是我如何訪問我的服務器端的POST方法FORMDATA項目?
代碼:
router.post('/test', function(req, res) {
// Access the formData object sent from the client
// Do stuff...
}
謝謝!
一切都只是不確定例如files.file:undefined – TheS
在你的服務器配置中使用body parser。還有你打印文件。 – rroxysam