AngularJS FileSaver, производящий пустой файл
У меня есть следующий код PHP, который выводит документ из веб-службы: $db->where('documentReference', $post->documentID); $results = $db->getOne('documents'); $filelocation = 'doc/'; $file = $results['filename']; header('Content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document'); header('Content-Length: ' . filesize($filelocation.$file)); header('Content-disposition: attachment; filename="'.$file.'"'); readfile($filelocation.$file); И на переднем конце .. APIService.registerUser($scope.formData).then(function(data){ var blob = new Blob([data.data], {type: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'}); var config = { data: blob, filename: 'test.docx' }; FileSaver.saveAs(config); […]