我用强大的角度和nodejs上传文件。但我无法将任何内容发布到服务器。这是我尝试的代码:
服务器
var form = new formidable.IncomingForm();
form.uploadDir = path.join(__dirname, '../public/uploads');
form.on('file', function(field, file) {
fs.rename(file.path,path.join(form.uploadDir,file.name),function(err) {
if(err)
console.log(err);
console.log('Success')
});
});
// log any errors that occur
form.on('error', function(err) {
console.log('An error has occured: \n' + err);
});
// parse the incoming request containing the form data
form.parse(req, function(err, fields, files) {
});
})
HTML
<form enctype="multipart/form-data" class="form-horizontal" role="form" id = "form_email" ng-submit="pushMessage()">
角度的
$scope.formMessage={};
$scope.pushMessage = function() {
$http.post('/customers/message',$scope.formMessage).then(function(response) {
console.log(response);
});
};
最佳答案
我以前没有使用过。但是ng-fileupload可以帮您忙。它简单而方便。这是github文档。 https://github.com/danialfarid/ng-file-upload。希望对您有帮助
关于javascript - 上载文件nodejs和angular强大,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44128558/