老师您好,我想对下面这段代码进行修改,但是暂时无法读懂这段代码每行的意思,希望能有老师辅助解释一下,万分感谢。
getExchangelist: function() {
var t = this;
a.post("building/exchangelist").then(function(a) {
if (200 == a.code) {
var i = a.data.map(function(t) {
return e({}, t, {
num: 0
});
}).filter(function(t) {
return t.exchangePrice > 0;
}).sort(function(t, e) {
return e.exchangePrice - t.exchangePrice;
});
t.setData({
seList: i
});
}
})
.catch(function(t) {
console.log(t);
});
},