У меня есть следующий код 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);
});
}
Когда я проверяю данные, возвращенные из API, документ возвращается нормально, но при сохранении он всегда пуст?
При вызове конечной точки API вам нужно установить responseType в буфер массива следующим образом:
var promise = $http.post('http://someurl', formData, {responseType: 'arraybuffer'});
return promise;
Затем файл сохраняется правильно.
Других решений пока нет …