gpt4 book ai didi

node.js - POST 请求在 Restify 中不起作用,出现 500 内部服务器错误

转载 作者:太空宇宙 更新时间:2023-11-04 03:10:27 27 4
gpt4 key购买 nike

我在示例 REST API 中的 POST 请求时遇到了一些小问题。

我只有四个路由的四个回调方法:

app.get '/tasks', task.getAll
app.get '/tasks/done', task.getDone
app.get '/tasks/notdone', task.withoutDone
app.post '/tasks', task.newTask

和:

模型=需要'../models/models.js'

exports.getAll = (req, res, next) ->
models.Task.find {}, 'title description, done', (err, tasks) ->
if err then err
res.send tasks
do next

exports.getDone = (req, res, next) ->
models.Task.find {done: true}, (err, tasks) ->
if err then err
res.send tasks
do next

exports.withoutDone = (req, res, next) ->
models.Task.find {done: false}, (err, tasks) ->
if err then err
res.send tasks
do next

exports.newTask = (req, res, next) ->
if req.params.title is undefined
return next new restify.InvalidArgumentError 'Title is needed'

taskData =
title: req.params.title
description: req.params.description
done: req.params.done

task = new Task(taskData)
task.save (err, data) ->
if err
return next new restify.InvalidArgumentError(JSON.stringify(error.errors))
else
res.json(data)

res.send 201, task

所以,你可以找到代码here以独特的要点。

我运行时的跟踪

curl -i -X POST -d '{"title": "hello world", description: "lorem ipsum dolor amet", "done": true}' http://localhost:8080/tasks

在响应中给我返回 500 个内部头:

HTTP/1.1 500 Internal Server Error
Content-Type: application/json
Content-Length: 59
Access-Control-Allow-Origin: *
Access-Control-Allow-Headers: Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, Api-Version, Response-Time
Access-Control-Allow-Methods: GET, POST
Access-Control-Expose-Headers: Api-Version, Request-Id, Response-Time
Connection: Keep-Alive
Content-MD5: QFnWTtR6KfhLtGqWpGWZog==
Date: Mon, 17 Mar 2014 15:12:00 GMT
Server: task-API
Request-Id: 7d71a510-ade6-11e3-bd80-292785b198e2
Response-Time: 1

{"code":"InternalError","message":"restify is not defined"}

最佳答案

Restify在错误处理方面与expressjs有类似的设计。它吞下未捕获的异常并将它们以 JSON 格式发送回浏览器并伴随 HTTP 500 错误,而不是在控制台打印它们。

消息“restify is not Define”通常意味着您忘记在脚本中的某个位置调用 varrestify = require('restify');

您还可以使用以下代码片段在控制台上查明错误的位置:

server.on('uncaughtException', function (req, res, route, err) {
console.log('uncaughtException', err.stack);
});

关于node.js - POST 请求在 Restify 中不起作用,出现 500 内部服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22462895/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com