请问这段JS代码每一句是什么意思,有老师可以帮忙翻译解...
摸魚校尉JAY2020-11-28 10:19:45
我想对下面这段代码进行修改,但是暂时无法读懂这段代码每行的意思,希望能有老师辅助解释一下,万分感谢。
- 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);
- });
- },
复制代码
|