API返回了正确的数据,在控制器中使用console.log进行了检查,但总是得到undefined响应!

本来get请求也是响应undefined,但是后来在then中返回res调试好之后,前面get请求不返回res也正常了(很奇妙)!但是后面post请求必须在then中返回res

上图注释的也是可以成功的!!!!!

下面是解决post请求返回undefined的方法:

 methods: {
    async postInfo() {
      const { data: res } = axios.get('http://www.liulongbin.top:3006/api/post', { name: 'zs', age: 20 })
      console.log(res)

    }
  }

很奇怪需要在then中返回res才能访问响应post请求:

  methods: {
    async postInfo() {
      const response = await axios
        .post('http://www.liulongbin.top:3006/api/post', { name: 'zs', age: 20 })
        .then((res) => {
          return res
        })
      console.log(response)
    }
  }

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐