【发布时间】: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