vue 请求后台数据方法

this.axios.post("url", data)

this.axios.post(`http://......  `, data)

      .then((res) => {

          var result = res.data;

         alert(result );

      })

猜你喜欢

转载自blog.csdn.net/weixin_41472431/article/details/89364953