第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 Vue.js 在 Laravel 中上傳多張圖片

使用 Vue.js 在 Laravel 中上傳多張圖片

蝴蝶刀刀 2023-06-09 15:26:33
我正在嘗試在 Laravel 中使用 vue.js 上傳圖片,因?yàn)槲艺谑褂么随溄觝ttps://jsfiddle.net/b412ruzo/使用 vue.js 上傳圖片,當(dāng)我提交表單時(shí),我在文件數(shù)組中得到以下圖片現(xiàn)在的問題是我無(wú)法在 Laravel 控制器中獲取此文件數(shù)組當(dāng)我打印$request->file('files')在我的控制器中,我變得空了。當(dāng)我打印 $request->input('files') 這就是結(jié)果,一個(gè)空數(shù)組非常感謝有關(guān)此問題的任何幫助。代碼片段:data() {     return {    rawData: [],    formData: new Form({        files:[],})..  const header = {             Authorization: "Bearer " + this.token,            };  this.formData        .post(APP_URL + `/api/post`, { headers: header })        .then((response) => {   }
查看完整描述

1 回答

?
四季花海

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超5個(gè)贊

不確定您可以通過以下方式發(fā)送ajax請(qǐng)求 this.formData.post


嘗試這個(gè)


new Vue({

  el: "#app",

  data() {

    return {

      option: {

        maxFileCount: 3

      },

      files:[],

      rawData: [],

    }

  },

  methods: {

    loaddropfile: function(e) {

        e.preventDefault()

      e.stopPropagation()

        alert('ok')

        console.log(e)

    },

    openinput: function() {

        document.getElementById("vue-file-upload-input").click();

    },

    addImage: function(e) {

        const tmpFiles = e.target.files

      if (tmpFiles.length === 0) {

        return false;

      }

      const file = tmpFiles[0]

      this.files.push(file)

      const self = this

        const reader = new FileReader()

      reader.onload = function(e) {

        self.rawData.push(e.target.result)

      }

      reader.readAsDataURL(file)

    },

    removeFile: function(index) {

        this.files.splice(index, 1)

      this.rawData.splice(index, 1)

      document.getElementById("vue-file-upload-input").value = null

    },

    upload: function() {

        alert('Check console to see uploads')

        console.log(this.files)

      axios.post(`${APP_URL}/api/post`,{files:this.files},{ headers: header })

        .then((response) => {});


    }

  },

  mounted(){


  }

})

它會(huì)將您的表單數(shù)據(jù)發(fā)送到files密鑰,以便您可以通過以下方式獲取所有文件$request->file('files') 


查看完整回答
反對(duì) 回復(fù) 2023-06-09
  • 1 回答
  • 0 關(guān)注
  • 194 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)