Node.js TypeError:Bear不是函数

Mas*_*200 5 javascript json notepad++ node.js postman

我正在尝试从本教程学习node.js:https://scotch.io/tutorials/build-a-restful-api-using-node-and-express-4

当我进入Creating a Bear POST/api/bears部分时,我从邮递员那里得到以下错误 在此输入图像描述

它说熊不是一个函数,当我实例化它时var bear = new Bear(); 是我收到错误的时候.

这是我的熊.js

// app/models/bear.js

var mongoose     = require('mongoose');
var Schema       = mongoose.Schema;

var BearSchema   = new Schema({
    name: String
});

module.exports = mongoose.model('Bear', BearSchema);
Run Code Online (Sandbox Code Playgroud)

这是我的server.js

// server.js

// BASE SETUP
// =============================================================================

// call the packages we need
var express    = require('express');        // call express
var app        = express();                 // define our app using express
var bodyParser = require('body-parser');
var mongoose   = require('mongoose');
mongoose.connect('mongodb://node:node@novus.modulusmongo.net:27017/Iganiq8o'); // connect to our database
var Bear     = require('./app/models/bear');

// configure app to use bodyParser()
// this will let us get the data from a POST
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());

var port = process.env.PORT || 8080;        // set our port

// ROUTES FOR OUR API
// =============================================================================
var router = express.Router();              // get an instance of the express Router

// middleware to use for all requests
router.use(function(req, res, next) {
    // do logging
    console.log('Something is happening.');
    next(); // make sure we go to the next routes and don't stop here
});

// test route to make sure everything is working (accessed at GET http://localhost:8080/api)
router.get('/', function(req, res) {
    res.json({ message: 'hooray! welcome to our api!' });   
}); 
// <-- route middleware and first route are here

// more routes for our API will happen here

// on routes that end in /bears
// ----------------------------------------------------
router.route('/bears')

    // create a bear (accessed at POST http://localhost:8080/api/bears)
    .post(function(req, res) {

        var bear = new Bear();      // create a new instance of the Bear model
        bear.name = req.body.name;  // set the bears name (comes from the request)

        // save the bear and check for errors
        bear.save(function(err) {
            if (err)
                res.send(err);

            res.json({ message: 'Bear created!' });
        });

    });


// REGISTER OUR ROUTES -------------------------------
// all of our routes will be prefixed with /api
app.use('/api', router);

// START THE SERVER
// =============================================================================
app.listen(port);
console.log('Magic happens on port ' + port);
Run Code Online (Sandbox Code Playgroud)

我该怎么做才能发挥作用?提前致谢.

小智 0

抱歉,我无法评论。

试试这个:

1.使用本地mongodb数据库并将连接字符串设置为您的:

    mongoose.connect('mongodb://node:node@novus.modulusmongo.net:27017/Iganiq8o');
Run Code Online (Sandbox Code Playgroud)

2.在Postman中设置body参数,而不是header。