我有一个Vuejs组件的方法:
async submit () {
if (this.$refs.form.validate()) {
let formData = new FormData()
formData.append('userImage', this.avatarFile, this.avatarFile.name)
this.avatarFile = formData
try {
let response = await this.$axios.post('http://localhost:3003/api/test.php', {
avatar: this.avatarFile,
name: this.name,
gender: this.gender,
dob: this.DOB,
}, {
headers: {
'Content-Type': 'multipart/form-data; boundary=' + formData._boundary
}
})
if (response.status === 200 && response.data.status === 'success') {
console.log(this.response)
}
} catch (e) {
console.log(e)
}
}
}
在中test.php
,我json_decode(file_get_contents("php://input"), TRUE);
用来读取数据作为$_POST
变量。
虽然我能读name
,gender
并dob
正确,我不能获取avatar
正常。
有相同的解决方案吗?
注意:formData.append(.., ..)
由于我打算处理14个以上的变量,因此我不会附加每个变量。
主持人注意:在使用formData和其他数据对象的地方,我没有发现任何问题。
PHP(process.php)
Vue和表单HTML