(node:197737) UnhandledPromiseRejectionWarning: SyntaxError: Unexpected end of JSON input at JSON.parse () at API (api.js:9:18) at Object. (api.js:17:1) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) at Function.Module._load (internal/modules/cjs/loader.js:585:3) at Function.Module.runMain (internal/modules/cjs/loader.js:831:12) at startup (internal/bootstrap/node.js:283:19)(node:197737) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2)(node:197737) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
请
登录后发表观点
很明显的代码块错误
小石头 2024-06-21 12:29:33还可以简化:
const Abc = JSON.parse(input.Abc || '[]')
对对。
方棱 2024-06-19 09:07:42var Abc = JSON.parse(input.Abc ? input.Abc : "[]");
我是这么用的,能规避大多数问题。
还可以简化:const Abc = JSON.parse(input.Abc || '[]')
var Abc = JSON.parse(input.Abc ? input.Abc : "[]");
我是这么用的,能规避大多数问题。
把字符串放到 JSON 在线解析里试一下
mj4ever 2024-06-13 20:06:22当在 Node.js 或 JavaScript 中使用
JSON.parse()
方法尝试将一个字符串转换为 JSON 对象时,如果 JSON 字符串不是有效的 JSON 格式,将会抛出SyntaxError
错误,通常报错信息是“Unexpected end of JSON input”
参考这里,可以先不做 JSON.parse 直接输出 看下输出数据
代码块的错误
当在 Node.js 或 JavaScript 中使用 JSON.parse()
方法尝试将一个字符串转换为 JSON 对象时,如果 JSON 字符串不是有效的 JSON 格式,将会抛出 SyntaxError
错误,通常报错信息是“Unexpected end of JSON input”
语法报错