使用Laravel和Vuejs上传视频时,如何解决500(内部服务器错误)问题

时间:2019-07-08 00:15:43

标签: laravel post axios http-status-code-500

我尝试发布带有Form Data和axios的视频,但是当我测试时,视频已经存储,但是无法将视频信息保存到数据库中,并在控制台中获取Code 500。该如何解决?

这是用于新的Windows服务器,运行MySQL 8,PHP 7,Vuejs 2和Apache 2


    upload() {
                this.selected = true
                this.videos = Array.from(this.$refs.videos.files)

                const uploaders = this.videos.map(video => {
                    const form = new FormData()

                    form.append('video', video)
                    form.append('title', video.name)

                    return axios.post(`/channels/${this.channel.id}/videos`, form)
                })
            }

控制台日志错误 “ app.js:279 POST http://youtube.bon/channels/15eae1f6-2c7f-4e69-99f4-f505d897ffea/videos 500(内部服务器错误)”

0 个答案:

没有答案