首页 > 解决方案 > 我得到一个 TypeError: express.json() is not a function

问题描述

我是初学者,我一直在使用 github-learning-lab。它声明用于app.use(bodyParse.json())执行 POST 请求,但 VSCode 声明不推荐使用“body-parse”。

我在网上搜索,大多数人说要使用app.use(express.json())当前版本的 Express

我的快递版:4.17.1

我的节点版本:14.17.0

const express = require('express');
const app = express();

app.use(express.json());
app.use(express.urlencoded({ extended: false }))

const mockUserData = [
    {name: 'Mark'},
    {name: 'Jill'}
]
app.get('/users', function(req, res){
    res.json({
        success: true,
        message: 'successfully got users. Nice!',
        users: mockUserData
    })
})
// colons are used as variables that can be viewed in the params
app.get('/users/:id', function(req,res){
    console.log(req.params.id);
    res.json({
        success: true,
        message: 'got one user',
        user: req.params.id
    })
})

app.post('/login', function(req,res){
    // Typically passwords are encrypted using something like bcrypt before sending to database
    const username = req.body.username;
    const password = req.body.password;

    // This should come from the database
    const mockUsername = 'billyTheKid';
    const mockPassword = 'superSecret';

    if (username === mockUsername && password === mockPassword) {
        // In practice, use JSON web token sign method here to make an encrypted token
        res.json({
            success: true,
            message: 'password and username match!',
            token: 'encrypted token goes here'
        })
    } else {
        res.json({
            success: false,
            message: 'password and username do not match'
        })
    }
})

app.listen(8000, function(){
    console.log('server is running')
})
Macs-MBP:node-express-course mac$ node server.js
/Users/mac/Documents/node-express-course/server.js:4
app.use(express.json());
                ^

TypeError: express.json is not a function
    at Object.<anonymous> (/Users/mac/Documents/node-express-course/server.js:4:17)
    at Module._compile (internal/modules/cjs/loader.js:1068:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1097:10)
    at Module.load (internal/modules/cjs/loader.js:933:32)
    at Function.Module._load (internal/modules/cjs/loader.js:774:14)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
Macs-MBP:node-express-course mac$ head node_modules/express/package.json
{
  "_from": "express",
  "_id": "express@4.17.1",
  "_inBundle": false,
  "_integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
  "_location": "/express",
  "_phantomChildren": {},
  "_requested": {
    "type": "tag",
    "registry": true,

标签: node.jsexpressbody-parser

解决方案


我重新安装了快递。我最初安装它时可能犯了一个错误。我应该从一开始就尝试这个。谢谢您的帮助。


推荐阅读