post-in-react应用程序在localhost上工作,但没有数据进入实时mysql数据库

ws51t4hk  于 2021-06-18  发布在  Mysql
关注(0)|答案(0)|浏览(212)

http://www.hakvik.se/react/#/contact 我在谷歌上搜索了好几天都没有成功。没有cors问题。在控制台中一切正常,但当我试图将联系人表单中的数据发布到mysql数据库时,没有任何内容进入我的直播主机上的db表。当我在headers和axios中更改细节并调用locahost时,它会按预期工作。
下面是相关代码,请告诉我您是否需要额外的代码才能看到问题!
我使用了create-react应用程序。

handleSubmit = (event) => {
  event.preventDefault();
  let config = {
    headers: {
      'Access-Control-Allow-Headers': 'Origin, X-Requested-With, Content-Type, Accept',
      'Access-Control-Allow-Origin': 'http://www.hakvik.se',
      'Content-Type': 'application/x-www-form-urlencoded',
      'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE',
  }
};

// axios.post('http://127.0.0.1/myProjects/react-refactored-with-redux/src/api/index.php/?/user',
axios.post('http://www.hakvik.se/react/#/src/api/index.php/?/user',
  querystring.stringify({
    fname: this.state.fname,
    lname: this.state.lname,
    mail: this.state.mail,
    msg: this.state.msg
  }),
  config
);

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题