(data)
| 389 | } |
| 390 | |
| 391 | function safeGet(data) { |
| 392 | try { |
| 393 | if (typeof JSON.parse(data) == "object") { |
| 394 | return true; |
| 395 | } |
| 396 | } catch (e) { |
| 397 | console.log(e); |
| 398 | console.log(`京东服务器访问数据为空,请检查自身设备网络情况`); |
| 399 | return false; |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | function jsonParse(str) { |
| 404 | if (typeof str == "string") { |