gpt4 book ai didi

Node.js + Mongoose 在本地工作,但不能在 Heroku 上工作

转载 作者:可可西里 更新时间:2023-11-01 09:10:23 27 4
gpt4 key购买 nike

这是我在 Heroku 上运行的 node.js 文件。它在本地完美运行,但是当我将它推送到 Heroku 时,不会创建数据库集合,也不会抛出任何错误。最终,我只是想让它在 Heroku 上运行时实际创建连接。谢谢。

var mongoose = require('mongoose'),
db_url = process.env.MONGOHQ_URL || "mongodb://john:<mypasswordwashere>@staff.mongohq.com:10053/app3305538",
db = mongoose.connect(db_url),
Schema = mongoose.Schema;

//Mongoose DB Test
var MsgSchema = new Schema({
date: {type: Date, default: Date.now},
message: String
});
var MsgModel = db.model("messages", MsgSchema);
var Msg = new MsgModel();
Msg.message = "blurgh";
Msg.save();

最佳答案

您是否在 heroku 中指定了 Node 版本?

请引用这个。 (我也混淆了同样的问题。但解决了。) http://devcenter.heroku.com/articles/nodejs-versions

关于Node.js + Mongoose 在本地工作,但不能在 Heroku 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9730567/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com