Node.js在Heroku上的部署失败:TypeError。无法读取null的 "split "属性

问题描述 投票:0回答:1

有人知道这个错误是什么意思吗?我的应用程序在Node.js上,我的数据库在Atlas上。当我尝试在Heroku上部署它时,我在日志中得到这个错误信息。

TypeError.Cannot read property 'split' of the Node.js and my database on Atlas: Cannot read property 'split' of null at parseSrvConnectionString (appnode_modulesmongodblibcoreuri_parser.js:40:23) at parseConnectionString (appnode_modulesmongodblibcoreuri_parser. js:556:12) at connect (appnode_modulesmongodbliboperationsconnect.js:272:3) at appnode_modulesmongodblibmongo_client. js:218:5 at maybePromise (appnode_modulesmongodblibutils.js:719:3) at MongoClient.connect (appnode_modulesmongodblibmongo_client.js:214:10) at Function.MongoClient.connect (appnode_modulesmongodblibmongo_client.js:432:22) at Database.connect (appdatabase.js:9:15) at Object. (appdatabase.js:21:4) at Module._compile (internalmodulescjsloader.js:1118:30) [31m[nodemon] app crashed - waiting for file changes before starting...[39m]。

数据库.js

const mongo = require('mongodb').MongoClient; require('dotenv').config()

class Database {
    constructor() {
        this.client = null;
    }
    connect() {
        mongo.connect(process.env.URL_DATABASE, { useNewUrlParser: true, useUnifiedTopology: true }, (err, client) => {
            if (err) throw err
            this.client = client;

        });
    } }




const db = new Database(); db.connect(); console.log(db); module.exports = db;

路由器.js

const express = require('express'),
    router = express.Router();
const db = require('./database');
const ObjectId = require('mongodb').ObjectID;

// GET ALL

router.get('/books', (req, res, next) => {

    const localdb = db.client.db(process.env.DB_NAME);
    const collection = localdb.collection(process.env.COLL_BOOKS);
    collection.find({}).toArray(function (err, docs) {
        if (err) throw err
        res.status(200).send(docs);
    });
});

// GET ONE

router.get('/books/:name', (req, res, next) => {
    let name = req.params.name
    const localdb = db.client.db(process.env.DB_NAME);
    const collection = localdb.collection(process.env.COLL_BOOKS);
    collection.findOne({ "name": name }, function (err, docs) {
        if (err) throw err
        res.status(200).send(docs);
    });
});

// POST ONE

router.post('/books', (req, res, next) => {
    const localdb = db.client.db(process.env.DB_NAME);
    const collection = localdb.collection(process.env.COLL_BOOKS);
    let newBook = req.body;
    collection.insertOne(newBook, function (err) {
        if (err) throw err
        res.status(201).send(true);

    });
});

// DELETE ONE

router.delete('/books/:name', (req, res, next) => {
    const localdb = db.client.db(process.env.DB_NAME);
    const collection = localdb.collection(process.env.COLL_BOOKS);
    collection.deleteOne({ "name": req.params.name }, function (err) {
        if (err) throw err
        res.status(200).send(true)

    })
});

// PUT ONE

router.put('/books/:name', (req, res, next) => {
    const localdb = db.client.db(process.env.DB_NAME);
    const collection = localdb.collection(process.env.COLL_BOOKS);
    collection.updateOne({  "name": req.params.name }, { $set: req.body }, function (err) {
        if (err) throw err
        res.status(201).send(true);
    });

});

module.exports = router;

app.js

    const express = require('express'),
        app = express();
    os = require('os');
    const bodyParser = require('body-parser');
    const cors = require('cors');
    const router = require('./router.js')
    require('dotenv').config()


    app.use(cors());
    app.use(bodyParser.json());

    app.use('/api/v1', router);

    const port = (process.env.PORT || '3001');

let server = app.listen(port, os.hostname(), () => {
    let host = server.address().address,
        port = server.address().port;
    console.log("Example app listening at http://%s:%s", host, port);
});
javascript node.js mongodb heroku mongodb-atlas
1个回答
0
投票

当我把Heroku var config中的DB_URL的引号去掉后,这个错误就消失了,但现在它给我带来了另一个错误,那就是...。

TypeError: Cannot read property 'db' of null 2020-05-05T10:21:40.450337+00:00 app[web.1]: at /app/router.js:12:31 2020-05-05T10:21:40.450355+00:00 app[web.1]: at Layer.handle [as handle_request] (/app/node_modules/express/lib/router/layer.js:95:5) 2020-05-05T10:21:40.450356+00:00 app[web.1]: at next (/app/node_modules/express/lib/router/route.js:137:13) 2020-05-05T10:21:40.450356+00:00 app[web.1]: at Route.dispatch (/app/node_modules/express/lib/router/route.js:112:3) 2020-05-05T10:21:40.450357+00:00 app[web.1]: at Layer.handle [as handle_request] (/app/node_modules/express/lib/router/layer.js:95:5) 2020-05-05T10:21:40.450358+00:00 app[web.1]: at /app/node_modules/express/lib/router/index.js:281:22 2020-05-05T10:21:40.450358+00:00 app[web.1]: at Function.process_params (/app/node_modules/express/lib/router/index.js:335:12) 2020-05-05T10:21:40.450359+00:00 app[web.1]: at next (/app/node_modules/express/lib/router/index.js:275:10) 2020-05-05T10:21:40.450359+00:00 app[web.1]: at Function.handle (/app/node_modules/express/lib/router/index.js:174:3) 2020-05-05T10:21:40.450359+00:00 app[web.1]: at router (/app/node_modules/express/lib/router/index.js:47:12) 2020-05-05T10:21:57.090036+00:00 app[web.1]: /app/node_modules/mongodb/lib/utils.js:725 2020-05-05T10:21:57.090047+00:00 app[web.1]: throw error; 2020-05-05T10:21:57.090048+00:00 app[web.1]: ^ 2020-05-05T10:21:57.090048+00:00 app[web.1]:
© www.soinside.com 2019 - 2024. All rights reserved.