jquery ajax提交文件

偏向技术
/ 0 评论 / 43 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年03月30日,已超过1335天没有更新,若内容或图片失效,请留言反馈。
javascript
var formData = new FormData();
formData.append('file', $('#file').get(0).files[0] );
$.ajax({
    url: 'ajax/upload',
    type: 'post',
    data: formData,
    dataType: 'json',
    processData: false, //重要
    contentType: false, //重要
    success: function (d) {
    console.log(d);
    },
  error: function(err){
    console.log(err);
  }
})
12345678910111213141516
0

评论 (0)

取消