在使用axios时发生的报错问题

我在一个按钮上绑定了一个查询事件,然后点击按钮报以下错误,无法获得get的属性,查了一下我也不清楚什么原因

methods:{
        search(){
            this.$axios.get('http://127.0.0.1:8000/ajax/speedsearch/id=1').then(response=>{
                console.log(response.data.object.list);
                this.tableData=response.data.object.list;
                console.log(this.tableData)
            }).catch(function(response){
                console.log(response);
            })
        }
    },

img

不是无法获取get属性,是你给一个空对象使用了get函数,说明你调用get函数的那个变量是空的,你检查一下吧