我尝试发布带有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(内部服务器错误)”