简体   繁体   English

为什么 Express.js res.send(jsonObject.property) 会使应用程序崩溃?

[英]Why does Express.js res.send(jsonObject.property) crash the app?

Using response.send() with a JSON object property crashes the app.使用带有 JSON object 属性的 response.send() 会使应用程序崩溃。

const express = require('express')
const https = require('https')
const app = express()

app.get('/', function(req, res) {

  const url = 'https://api.openweathermap.org/data/2.5/weather?q=London&appid=myID&units=metric'
  
  https.get(url, function(response) { 
    response.on('data', function(data){
      const weatherData = JSON.parse(data)
      const temp = weatherData.main.temp
      const weatherDescription = weatherData.weather[0].description
      res.send(temp)
    })
  })
})

app.listen(3000, () => {
  console.log('We are up and running... d(-_^)')
})

Using nodemon the bash error message is:使用 nodemon bash 错误消息是:

express deprecated res.send(status): Use res.sendStatus(status) instead at app.js:16:11
_http_server.js:248
    throw new ERR_HTTP_INVALID_STATUS_CODE(originalStatusCode);
    ^

RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: -0.78
    at ServerResponse.writeHead (_http_server.js:248:11)
    at ServerResponse._implicitHeader (_http_server.js:239:8)
    at ServerResponse.end (_http_outgoing.js:763:10)
    at ServerResponse.send (C:path\node_modules\express\lib\response.js:221:10)
    at IncomingMessage.<anonymous> (C:path\app.js:16:11)
    at IncomingMessage.emit (events.js:311:20)
    at IncomingMessage.Readable.read (_stream_readable.js:512:10)
    at flow (_stream_readable.js:989:34)
    at resume_ (_stream_readable.js:970:3)
    at processTicksAndRejections (internal/process/task_queues.js:84:21) {
  code: 'ERR_HTTP_INVALID_STATUS_CODE'

The interesting thing is that using a string beforehand or simply using two different JSON properties works:有趣的是,预先使用一个字符串或简单地使用两个不同的 JSON 属性有效:

res.send('' + temp)

or或者

res.send(weatherDescription + temp)

What is the reason behind Express / Node crashing? Express / Node崩溃的原因是什么? Would you mind explaining why this is the case?你介意解释一下为什么会这样吗?

Thank you in advance!先感谢您!

See the API reference :请参阅API 参考

res.send([body]) res.send([正文])
Sends the HTTP response.发送 HTTP 响应。

The body parameter can be a Buffer object, a String, an object, Boolean, or an Array.主体参数可以是缓冲区 object、字符串、object、Boolean 或数组。 For example:例如:

You are passing in a Number, which isn't one of the valid value types.您正在传递一个数字,它不是有效的值类型之一。

(It used to be that passing in a number as the first parameter would set the status code, but that functionality is deprecated now, hence your first line of output). (以前传入一个数字作为第一个参数会设置状态代码,但现在不推荐使用该功能,因此您的第一行输出)。


The interesting thing is that using a string beforehand有趣的是,事先使用字符串

someString + someNumber will give you a string, which is one of the valid value types. someString + someNumber 会给你一个字符串,它是有效的值类型之一。

Well when you specify number the res.send() express expects a valid status code.好吧,当您指定数字时, res.send() 快递需要一个有效的状态码。 In this case you are putting the temp -0.78 which is not a valid status code.在这种情况下,您输入的 temp -0.78不是有效的状态代码。 But when you specify a '' or a string or after the expression is converted into a string.但是当你指定一个''或者一个string或者在表达式被转换成一个字符串之后。 That is considered as a valid response not a statusCode.这被视为有效响应而不是状态代码。 Hope that answers your question.希望这能回答你的问题。

let n = "3"+4
console.log(typeof n)

try to run this snippet.尝试运行此代码段。 You will see why its converted into a string.您将看到为什么将其转换为字符串。

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

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