我想在AngularJS
中为Safari浏览器上传文件,因为{5.1}不支持FileReader
API。
我使用以下代码使用AJAX上传它。你能否确认一下我是否做对了。
var fd = new FormData();
fd.append('file', $files[i]);
http.post(url, fd, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(data){
alert("success"+data);
})
.error(function(){
alert("failure");
});
如果文件上传作为参数传递,是否有可能返回时间戳。