美文网首页
2021-04-10Axios的post方式

2021-04-10Axios的post方式

作者: swp小小喀嚓鱼 | 来源:发表于2021-04-10 15:33 被阅读0次

    axios()

     axios({
      method: 'post',
      url: "https://autumnfish.cn/api/user/reg",
      data:{
        username:'jack'
      }
    })
      .then(function (response) {
        console.log('one1======='+response.data);
        console.log(response)
      });
    

    axios()

    
      axios({
      method: 'post',
      baseURL:'https://autumnfish.cn',
      url: "/api/user/reg",
      data:{
        username:'jack'
      }
    })
      .then(function (response) {
        console.log('one2======='+response.data);
        console.log(response)
      });
    

    axios.post()

     axios.post('https://autumnfish.cn/api/user/reg',{       
        username:'jack'    
      })
      .then(function (response) {
        console.log('one3======='+response.data);
        console.log(response)
      });
    

    axios.post()

      axios.defaults.baseURL = 'https://autumnfish.cn'
      axios.post('/api/user/reg',{ 
        username:'jack'    
      })
      .then(function (response) {
        console.log('one4======='+response.data);
        console.log(response)
      });
    

    相关文章

      网友评论

          本文标题:2021-04-10Axios的post方式

          本文链接:https://www.haomeiwen.com/subject/xwhnkltx.html