1.axios。then两种回调形式的this指向
a.箭头函数,函数中 this 总是绑定总是指向对象自身
axios.ajax({
url:'/get/basicTable',
}).then(response=> {
console.log(this) // 有值,指向当前对象
})
b.函数中 this 指向window
axios.ajax({
url:'/get/basicTable',
}).then(function(response)=> {
console.log(this) // undefined
})
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。