(data)
| 313 | }) |
| 314 | } |
| 315 | function safeGet(data) { |
| 316 | try { |
| 317 | if (typeof JSON.parse(data) == "object") { |
| 318 | return true; |
| 319 | } |
| 320 | } catch (e) { |
| 321 | console.log(e); |
| 322 | console.log(`京东服务器访问数据为空,请检查自身设备网络情况`); |
| 323 | return false; |
| 324 | } |
| 325 | } |
| 326 | function jsonParse(str) { |
| 327 | if (typeof str == "string") { |
| 328 | try { |