(data)
| 302 | } |
| 303 | |
| 304 | function safeGet(data) { |
| 305 | try { |
| 306 | if (typeof JSON.parse(data) == "object") { |
| 307 | return true; |
| 308 | } |
| 309 | } catch (e) { |
| 310 | console.log(e); |
| 311 | console.log(`京东服务器访问数据为空,请检查自身设备网络情况`); |
| 312 | return false; |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | function jsonParse(str) { |
| 317 | if (typeof str == "string") { |
no test coverage detected