(data)
| 659 | } |
| 660 | |
| 661 | function safeGet(data) { |
| 662 | try { |
| 663 | if (typeof JSON.parse(data) == "object") { |
| 664 | return true; |
| 665 | } |
| 666 | } catch (e) { |
| 667 | console.log(e); |
| 668 | console.log(`京东服务器访问数据为空,请检查自身设备网络情况`); |
| 669 | return false; |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | function TotalBean() { |
| 674 | return new Promise(async resolve => { |
no test coverage detected