node.js使用报错“The chunk argument must be of type string or an instance of Buffer or Uint8Array“
Posted 二木成林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node.js使用报错“The chunk argument must be of type string or an instance of Buffer or Uint8Array“相关的知识,希望对你有一定的参考价值。
异常
node:internal/errors:464
ErrorCaptureStackTrace(err);
^
TypeError [ERR_INVALID_ARG_TYPE]: The "chunk" argument must be of type string or an instance of Buffer or Uint8Array. Received an instance of Array
at new NodeError (node:internal/errors:371:5)
at write_ (node:_http_outgoing:742:11)
at ServerResponse.end (node:_http_outgoing:855:5)
at F:\\Pre_Coding\\Pre_WebStorm_Project\\simple-bbs-server-nodejs\\router.js:41:14
at processTicksAndRejections (node:internal/process/task_queues:96:5)
code: 'ERR_INVALID_ARG_TYPE'
Node.js v17.1.0
错误代码
使用express+node.js写web端代码:
app.get('/test', function (request, response)
var userList = userModel.selectAll();
response.end(userList);
);
原因
response.end()
方法内传入的参数应该是一个字符串,而不是一个对象,这里userModel.selectAll()
的查询结果是一个对象。
解决
利用JSON.stringify()
方法将对象转换成json格式的字符串返回。
或者使用node.js的http模块的send()
方法,可以直接传递对象。
正确代码
- 使用
JSON.stringify()
方法:
app.get('/test', function (request, response)
var userList = userModel.selectAll();
response.end(JSON.stringify(userList));
);
- 使用
send()
方法
app.get('/test', function (request, response)
var userList = userModel.selectAll();
response.send(userList);
);
以上是关于node.js使用报错“The chunk argument must be of type string or an instance of Buffer or Uint8Array“的主要内容,如果未能解决你的问题,请参考以下文章
使用node.js编写前端代码资源文件.jpg.css报错404
关于Node.js的httpClieint请求报错ECONNRESET的原因和解决措施
node.js使用ini模块读取ini文件报错TypeError: str.split is not a function