控制台出现的报错信息

 报错原因

方法中写了默认传参,但在调用方法的时候没有加上括号,虽然敲代码时候表面不报错,但是url会出现上面的异常

getTeacherList(page = 1) {
        this.page = page
        teacherApi.pageTeacherCondition(this.page, this.limit, this.teacherQuery)
          .then(response => {//请求成功
            this.teacherList = response.data.rows
            this.total = response.data.total
          })
          .catch(error => {
            console.log(error)
          })//请求失败
      }

 解决方法

调用方法时补上括号即可

Logo

前往低代码交流专区

更多推荐