繁体   English   中英

(节点:45207)UnhandledPromiseRejectionWarning:错误 [ERR_HTTP_HEADERS_SENT]

[英](node:45207) UnhandledPromiseRejectionWarning: Error [ERR_HTTP_HEADERS_SENT]

我正在通过构建一个简单的代码片段应用程序来学习 Node.js。 它将有两个字段titlesnippet 在提交新代码段时,我不断收到如下错误。

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.

index.js

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;

model代码

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 );

还有一个观察结果是,即使我的 model 在启动新的 model object 时有两个字段,例如titlesnippet ,我也没有得到我的片段字段。

调试日志如下

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 并发现错误-无法设置标头-在它们被发送到客户端后但无法理解。

任何建议,非常感谢。

谢谢你。

您不能为同一请求发送两次响应。

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' );

                } );

永远记住,只有在发送响应后尝试设置标头时,才会在节点中发生此错误。

因此,在调试时查找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()将停止执行并调用下一个中间件。

更多在顶部。 当您从middleware function return res.send()时,它将跳过所有其他中间件,并返回响应。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM