我正在使用vue-resource post方法,我想将电子邮件表单发送到我的php文件。
request() {
const formData = {
name: this.name,
email: this.email,
textarea: this.textarea
};
this.$http.post('index.php', formData, {emulateJSON: true})
.then((response) => {
$router.push(thankyou);
})
.catch(error => {
console.log(error);
});
}
提交表单后,我收到了回复status 404
和POST http://localhost:8080/index.php 404 (Not Found)
我在项目的主文件夹中找到了php文件。