(data)
| 383 | } |
| 384 | |
| 385 | function safeGet(data) { |
| 386 | try { |
| 387 | if (typeof JSON.parse(data) == "object") { |
| 388 | return true; |
| 389 | } |
| 390 | } catch (e) { |
| 391 | console.log(e); |
| 392 | console.log(`京东服务器访问数据为空,请检查自身设备网络情况`); |
| 393 | return false; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | function jsonParse(str) { |
| 398 | if (typeof str == "string") { |
no test coverage detected