- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在通过构建一个简单的代码片段应用程序来学习 Node.js。它将有两个字段 title
和 snippet
。在提交新代码片段时,我不断收到如下错误。
Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
at ServerResponse.setHeader (_http_outgoing.js:535:11)
at ServerResponse.header (/myportal/node_modules/express/lib/response.js:771:10)
at ServerResponse.send (/myportal/node_modules/express/lib/response.js:170:12)
at /myportal/routes/index.js:99:36
at processTicksAndRejections (internal/process/task_queues.js:97:5) {
code: 'ERR_HTTP_HEADERS_SENT'
}
(node:45207) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
at ServerResponse.setHeader (_http_outgoing.js:535:11)
at ServerResponse.header (/myportal/node_modules/express/lib/response.js:771:10)
at ServerResponse.send (/myportal/node_modules/express/lib/response.js:170:12)
at /myportal/routes/index.js:102:25
at processTicksAndRejections (internal/process/task_queues.js:97:5)
(node:45207) 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(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:45207) [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.
const express = require( "express" );
const mongoose = require( 'mongoose' );
const router = express.Router();
const snippetSchema = mongoose.model( 'snippetSchema' );
const { check, validationResult } = require( 'express-validator' );
router.post( '/newsnippet',
[
check( 'title' )
.isLength( { min: 1 } )
.withMessage( ' Please enter a valid title name.' ),
check( 'snippet' )
.isLength( { min: 1 } )
.withMessage( ' Please enter a valid snippet.' ),
],
( req, res ) => {
const errors = validationResult( req );
if ( errors.isEmpty() ) {
res.send( "Thank you for adding new snippet." );
console.log( "Req Body : " + JSON.stringify( req.body ) );
const newSnippet = new snippetSchema( req.body );
console.log( " I am executed till creating newSnippet instantiation" + JSON.stringify( newSnippet ) );
newSnippet.save()
.then( () => { res.send( 'Thank you for adding new snippet :)' ); console.log( "Reached till here!" ) } )
.catch( ( err ) => {
console.log( err );
res.send( 'Sorry! something went wrong' );
} );
//return;
} else {
res.render( 'snippets', {
title: "My Homepage",
errors: errors.array(),
data: req.body,
} );
//return;
}
}
);
module.exports = router;
const mongoose = require( 'mongoose' );
mongoose.set( 'useCreateIndex', true );
const snippetSchema = new mongoose.Schema( {
title: {
type: String,
trim: true,
//unique: true,
},
snippet_code: {
type: String,
trim: true,
//unique: true,
}
} );
module.exports = mongoose.model( 'snippetSchema', snippetSchema );
还有一个观察结果是,即使我的模型在启动新模型对象时有两个字段,例如 title
和 snippet
,但我没有得到我的代码段字段。
调试日志如下
Req Body : {"title":"Create New Change","snippet":"var r = new Record(); var result = r.createChange({\"short_description\" :\"Sample Changee\"}); print.info(result.number);"}
I am executed till creating newSnippet instantiation{"_id":"5ea5195c9fcbc0b10ebd7968","title":"Create New Change"}
我搜索了 stackoverflow 并发现 error-cant-set-headers-after-they-are-sent-to-the-client但无法理解。
任何建议,非常感谢。
谢谢。
最佳答案
您不能对同一请求发送两次响应。
router.post( '/newsnippet',
[
check( 'title' )
.isLength( { min: 1 } )
.withMessage( ' Please enter a valid title name.' ),
check( 'snippet' )
.isLength( { min: 1 } )
.withMessage( ' Please enter a valid snippet.' ),
],
( req, res ) => {
const errors = validationResult( req );
if ( errors.isEmpty() ) {
const newSnippet = new snippetSchema( req.body );
console.log( " I am executed till creating newSnippet instantiation" + JSON.stringify( newSnippet ) );
newSnippet.save()
.then( () => { res.send( 'Thank you for adding new snippet :)' ); console.log( "Reached till here!" ) } )
.catch( ( err ) => {
console.log( err );
res.send( 'Sorry! something went wrong' );
} );
永远记住,当您在发送响应后尝试设置 header 时,此错误仅发生在 Node 中。
因此,在调试时查找 res.send()
。
这两者并不相同。
router.get('/', async(req, res) => {
return res.send('Hello world');
res.send('Thanks for adding code snippet')!; // this line will not be executed, no errors
);
router.get('/', async(req, res) => {
res.send('Hello world');
res.send('Thanks for adding code snippet')!; // this line will be executed, and cause errors
);
next()
也是如此。 next()
将导致代码继续执行,而 return next()
将停止执行并调用下一个中间件。
更多关于主题。 当您从中间件
函数返回res.send()
时,它将跳过所有其他中间件,并返回响应。
关于javascript - ( Node :45207) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61436214/
我有 await 语句,它们可能会引发错误,因此我在 try/catch 内执行它们。但是 try/catch 没有捕获它们,我收到警告: (node:4496) UnhandledPromiseRe
最近,我在ionic中创建了一个应用程序,我想在ios中对其进行测试。所以我运行命令ionic cordova emulate ios。但是,这给了我以下错误。 (节点:4200)UnhandledP
我正在尝试使用 node.js discord 模块制作一个机器人,当在 discord 中输入命令时,它会向用户发送私有(private)消息。该命令应该像这样使用 !rp 然后邮件将发送给收件人
我正在尝试调用一个异步方法。异步方法是: async connect() { this.pool = await mysql.createPool(this.conf);
我按议程包编写了一些代码,但在运行我的项目时遇到了 UnhandledPromiseRejectionWarning。 我的代码在这里: agenda.define('transferDBField'
我有一个代码: function () { return new Promise((resolve, reject) => { try { fetch(URL, { metho
以下是我在 graphql(apollo-server)服务器中的 onDisconnect 函数代码(但不是特定于 graphql 的)。它包含一个 postgres 事务,通过 DB 适配器使用。
我是 Javascript Promise 的新手。我正在尝试以基于 Promises 的方式执行 MySQL 查询,我已经挠头半个小时了,但我仍然找不到这段代码中的问题。我正在使用this arti
尝试从 localhost:3000/todos/在 mongodb 中创建数据后获取数据,我在 Node 中收到错误 [UnhandledPromiseRejectionWarning: 错误 [E
我收到以下错误: Houston we got an err at getGames in index.js (node:72197) UnhandledPromiseRejectionWarning
所以我正在使用 Express.JS 和 MongoDB 制作一个 Web 应用程序,当我尝试在本地运行它时,它可以工作,但是当我用我的 aws Ubuntu 20.04 机器运行它时,它给了我以下错
我在调用其他发出 axios 请求的函数的函数中处理 UnhandledPromiseRejectionWarning 时遇到问题。 const getCode = async () => { c
我对 Node JS 还很陌生,所以我有点挣扎。 我正在尝试使用 Google Drive 的 API 从我的 Node Js 代码读取文件。 我有以下代码 router.get('/', funct
我正在使用 Angular/Firebase 在 Ionic 中构建一个应用程序。 我想在我的 Android 设备上测试该应用程序,该设备以前运行良好。但是,最近我无法运行它,因为出现错误。 $ i
这个问题在这里已经有了答案: How is PromiseRejectionEvent triggered? (2 个答案) 关闭 3 年前。 如果我在拒绝 promise 后清除计时器 - 无论我
我的目标是使用 Node.js 从网站上抓取一些数据. 我已经设法仅使用request 包来抓取数据,但是我要抓取的站点具有动态内容,而request 只能抓取此动态数据。 所以我做了一些研究,发现要
我玩过 Mocha 测试。我注意到我的函数在少数地方引发了 “UnhandledPromiseRejectionWarning” 警告。它使脚本无法通过检查。 我无法在互联网上找到有用的示例来教授/展
最近,我在测试代码时经常遇到此错误。刚才我在尝试执行包含错误的同步代码时再次收到此错误: (async function() { const characterProfile = await Mo
我知道涉及 SO 上的 UnhandledPromiseRejectionWarning 问题的现有答案,但找到的答案似乎都与我的情况不充分匹配。基本上,我以为我知道如何处理 promise 。但这个
我当前的nodejs版本是:8.9.1 我正在尝试执行我的代码,但总是遇到此错误,尝试修复它,但总是出现相同的错误: (node:38) UnhandledPromiseRejectionWarnin
我是一名优秀的程序员,十分优秀!