在vuejs中发送axios发布请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在vuejs中发送axios发布请求相关的知识,希望对你有一定的参考价值。

我想从我的vuejs中的模板发送axios发布请求,看起来像以下代码:

<script>
export default 
  data() 
    return 
      body:
       name:'ssdsdsd',
       time:'232342',
      ,
    header:headers: 
      'Content-Type': 'application/x-www-form-urlencoded',
    ,
      name:null,
      r:null,
    
  ,
  methods: 
    post:function()
      this.$http.post('http://127.0.0.1/saver.php',this.body,this.header).then(r => 
       this.r=r;
       // eslint-disable-next-line no-console
       console.log(typeof this.body)
      ).catch(err => 
   // eslint-disable-next-line no-console
   console.log(err.response.data)
);
    
  ,

</script>

并且我使用Requst方法在php代码中获得this.name(name)

这是我的php代码:

<?php
header('Access-Control-Allow-Origin: *');
header('Content-type: application/json');
    echo($_REQUEST['name']);

?>

但是php返回了此响应:

<br />
<font size='1'><table class='xdebug-error xe-notice' dir='ltr' border='1' cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Notice: Undefined index: name in C:\wamp64\www\saver.php on line <i>4</i></th></tr>
<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>
<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>
<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0003</td><td bgcolor='#eeeeec' align='right'>401952</td><td bgcolor='#eeeeec'>main(  )</td><td title='C:\wamp64\www\saver.php' bgcolor='#eeeeec'>...\saver.php<b>:</b>0</td></tr>
</table></font>
答案

更新

以上是关于在vuejs中发送axios发布请求的主要内容,如果未能解决你的问题,请参考以下文章

vuejs之使用axios发送http请求

使用 axios vuejs 和 laravel 验证表单

Vuejs Axios POST 请求从 Laravel 后端获取 HTTP422 错误

vue js中的axios将请求作为字符串而不是对象发送

Vue Js - 文件输入更改后发送axios请求

如何在 vuejs 中使用 axios 从数组中发布多个请求?