express deprecated res.send(status, body): 使用 res.status(status).send(body)

express deprecated res.send(status, body): Use res.status(status).send(body)

文件名script.js.

虽然 运行 我的 CRUD 应用程序出现此错误。 在此特定代码行出现错误任何人都可以提出一些解决方案吗?

如果您想完整查看代码,请告诉我,我会在评论中 post

错误

"express deprecated res.send(status, body): Use res.status(status).send(body) instead script.js:18:5
RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: <h2 style="font-family: Malgun Gothic; color: midnightblue ">Welcome to Edureka Node.js MongoDB Tutorial!!</h2>

代码

//Create a welcome message and direct them to the main page
app.get('/', (req, res) => {
res.send(
     
'<h2 style="font-family: Malgun Gothic; color: midnightblue ">Welcome to Edureka Node.js MongoDB 
 Tutorial!!</h2>'
 ,'Click Here to go to <b> <a href="/course">Course Page</a> </b>');
});
app.use(bodyparser.json());

这样改就行了

res.status(200).send(     
  '<h2 style="font-family: Malgun Gothic; color: midnightblue ">Welcome to Edureka 
     Node.js MongoDB Tutorial!!</h2>'
     ,'Click Here to go to <b> <a href="/course">Course Page</a> </b>');
});