首頁  >  文章  >  web前端  >  Ajax上傳檔案/相片時報錯誤TypeError :Illegal invocation的解決方法

Ajax上傳檔案/相片時報錯誤TypeError :Illegal invocation的解決方法

不言
不言轉載
2019-01-10 10:14:437520瀏覽

這篇文章帶給大家的內容是關於Ajax上傳文件/照片時報錯TypeError :Illegal invocation的解決方法,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。

問題

Ajax上傳檔案/照片時報錯誤TypeError :Illegal invocation

Ajax上傳檔案/相片時報錯誤TypeError :Illegal invocation的解決方法

解決

網路搜尋問題,錯誤原因可能有以下幾個,依序檢查:

  1. 請求類型有誤,如post請求,但在背景設定的是get請求

  2. 參數有誤。如沒有傳參,或參數對應不上去

  3. File類型的參數被預先處理了

##檢查後發現應該時原因3,故修改程式碼,設定$.ajax的processData: false:

getToken().then( res => {
  console.log('获取七牛云token后上传图片')
  if(!res.hasOwnProperty('data')) return
  // 整理参数
  var formData = new FormData()
  formData.append('token', res.data)
  formData.append('file', file)
  $.ajax({
    url: '',
    type: 'POST',
    contentType: 'multipart/form-data',
    processData: false,  // 增加这一行,不处理参数
    data: formData,
    success: function (result) {
      console.log(result)
    }
  })
})

以上是Ajax上傳檔案/相片時報錯誤TypeError :Illegal invocation的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除