我试图将文件发送到aws服务器。我正在使用角落区。我想知道如何发送文件。我有我的凭据,但不知道如何提出请求。
当我将文件放入dropzone时,我只是不断获取 ' POST https://url.com/ 400(错误请求)'
angular.extend($scope, {
dropzoneConfig: {
'options': {
'url':'https://url.com',
},
'eventHandlers': {
'sending': function(file, formData, xhr) {
console.log('sending');
},
'success': function(file, response) {
console.log('sent');
},
'error': function() {
console.log('error');
$scope.hideDropzone = true;
}
}
}
});
答案 0 :(得分:0)
这非常困难。 简而言之:
我们在实施方面工作了一个月。