axios发送post 请求 PHP接受数据的方式

前端js

axios.post('post.php', {
      name:"axios",
      pass:'123456x'
  })
  .then(function (response) {
    console.log('1>', response.data);
  })
  .catch(function (error) {
    console.log(error);
  });

后端php

你可能感兴趣的:(axios发送post 请求 PHP接受数据的方式)