【问题标题】:Form sending empty object表单发送空对象
【发布时间】:2020-06-07 13:17:15
【问题描述】:

我正在尝试创建一个使用 express、typescript 和 ejs 作为视图引擎的 REST,用于在前端显示数据。我在 ejs 中创建了一个表单:

<form action="/app" method="post">
    <div class="input-group mb-3">
        <label>
            <input type="text" name="title" placeholder="Title" class="form-control">
        </label>
    </div>
    <div class="form-group">
        <label>
            <input name="url" placeholder="Url" class="form-control">
        </label>
    </div>
    <div class="form-group">
        <label>
            <textarea type="text" name="description" placeholder="Description"
                                  class="form-control"></textarea>
        </label>
    </div>
    <div class="form-group">
        <button class="btn btn-success btn-block" type="submit">
            Send
        </button>
    </div>
</form>

这个表单向路由/app发送一个POST请求,这是应该执行的函数:

public async saveLink(req: Request, res: Response): Promise<void> {    
    console.log(req.body)
    const {title, url, description} = req.body;
    const newLink = new LinkModel({title, url, description});
    await newLink.save();
    res.json({status: res.status, data: newLink});
}

在控制台中,函数打印:

{} 
(node:22256) UnhandledPromiseRejectionWarning: ValidationError: LinkModel validation failed: title: Path `title` is required., url: Path `url` is required.
    at model.Document.invalidate (C:\Users\pablo\Desktop\Trabajo\Programación\Yt-video-keeper\node_modules\mongoose\lib\document.js:2574:32)
    at C:\Users\pablo\Desktop\Trabajo\Programación\Yt-video-keeper\node_modules\mongoose\lib\document.js:2394:17
    at C:\Users\pablo\Desktop\Trabajo\Programación\Yt-video-keeper\node_modules\mongoose\lib\schematype.js:1181:9
    at processTicksAndRejections (internal/process/task_queues.js:79:11)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:22256) 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:22256) [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.

如您所见,它将 req.body 打印为空对象,因此不会接收数据。但是当我通过 POSTMAN 发送数据时,它工作正常并将对象保存到数据库中

【问题讨论】:

    标签: node.js typescript express


    【解决方案1】:

    sending data via an HTML form 时,您应该关注请求的标头。
    在这种情况下,相关的标题是:

    Content-Type: application/x-www-form-urlencoded
    

    这意味着您在服务器端收到的请求正文不会是 JSON 格式(因此会被解析为空对象)。

    因此,为了像您一样使用请求的正文,您首先需要对其进行解析。
    幸运的是,您可以使用一些外部库将其转换为 JSON 格式,如 here 所述。

    【讨论】:

      猜你喜欢
      • 2018-01-07
      • 1970-01-01
      • 1970-01-01
      • 2018-10-19
      • 1970-01-01
      • 1970-01-01
      • 2016-03-02
      • 1970-01-01
      • 2023-04-06
      相关资源
      最近更新 更多