我尝试从数据库获取用户配置文件,并在运行配置文件 URL(localhost:3000 / Profile / 1)时将其作为 json 对象返回。但我收到此错误:TypeError:无法解构req.params的属性id,因为它未定义。这是 express 服务器中的代码。const express = require('express');const bodyParser = require(
2020-04-04
我一直在尝试将数据保存到 mongodb 数据库,但似乎什么都不起作用。我收到的第一个错误与req.body有关。当我单击提交按钮时,console.log(req.body)返回[Object: null prototype] { name: 'John', priority: 'go to bed' }而不是{ name: 'John', priority: 'go to bed' }其次,我
2019-02-13