Vue-resource post方法 - 将表单发送到php文件

时间:2018-02-23 19:54:16

标签: javascript post vue.js vue-resource

我正在使用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 404POST http://localhost:8080/index.php 404 (Not Found) 我在项目的主文件夹中找到了php文件。

0 个答案:

没有答案