- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
无法下载文件,请告诉我出了什么问题?
<div ng-conroller="loadImgCtrl">
<input type='file' id='file' name='file'>
<button ng-click="upload()">Upload</button>
<div>
JS:
var app=angular.module('loadImage', []);
app.controller('loadImgCtrl', ['$scope', '$http', function ($scope, $http) {
$scope.upload = function(){
var fd = new FormData();
var files = document.getElementById('file').files[0];
fd.append('file', files);
$http({
method: 'post',
url: 'upload.php',
data: fd,
headers: {'Content-Type': undefined},
}).then(function successCallback(response) {
$scope.response = response;
});
}
}]);
PHP:
<?php
$filename = $_FILES['file']['name'];
$location = '/images';
move_uploaded_file($_FILES['file']['tmp_name'],$location.$filename);
$arr = array("name"=>$filename);
echo json_encode($arr);
?>
在我收到的响应中:{“name”:null}。
版本 AngularJS 1.3.5。
最佳答案
您可以尝试此代码
$http.post('upload.php', fd, {
headers: {
'Content-Type': undefined
},
transformRequest: null
}).then(function successCallback(response) {
$scope.response = response;
});
显式设置 transformRequest: null
可以防止将请求转换为不正确的格式,例如 JSON。
关于javascript - 上传文件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47447136/
我是一名优秀的程序员,十分优秀!