解决方案 https://www.jianshu.com/p/4f7b33e3e1df
对比分析
success: (res) => {
console.log("(res) => { }时:" + this);
},
--------------
success: function (res){
console.log("function (res)时:" + this);
},
输出台结果
function (res)时:undefined (res) => { }时:[object Object]