无法使用 mongoose、Node.js 将数据插入到 mongoDB 中的 Document 字段中

Posted

技术标签:

【中文标题】无法使用 mongoose、Node.js 将数据插入到 mongoDB 中的 Document 字段中【英文标题】:Not able to insert data into fields of Document in mongoDB using mongoose, Node.js 【发布时间】:2015-03-02 11:22:10 【问题描述】:

我已经尝试了所有我能想到的方法,但我仍然无法将任何数据插入到我的 MongoDB 数据库中。 接收数据(推文)时,我会记录所有内容以检查数据类型是否与架构中字段的类型匹配,这似乎没问题,但插入到我的数据库中的数据只是一个空的 mongodb 文档。

我的架构:

var mongoose = require('mongoose');

var tweetSchema = new mongoose.Schema(
    userName: type: String, required: true,
    imageUrl: type: String,
    bannerUrl: type: String,
    text: type: String,
    hashTag: type: String
);

module.Exports = tweetSchema;

我的模特:

var mongoose = require("mongoose");
var tweetSchema = require("../schemas/tweet.js");

var Tweet = mongoose.model('Tweet',tweetSchema,"tweets");
module.exports = Tweet;

我尝试将文档插入 mongoDB 的应用程序部分:

var Twitter = require('node-tweet-stream');
require("./data/connectDB.js");
var Tweet = require('./data/models/tweet');

t.on('tweet', function(twdata)
    var uName = twdata.user.screen_name.toString();
    var iUrl = twdata.user.profile_image_url;
    var bUrl = twdata.user.profile_banner_url;
    var txt = twdata.text;
    var htag = "test";

    console.log("username: " + uName + " - " + typeof uName);
    console.log("image url: " + iUrl + " - " + typeof iUrl);
    console.log("banner url: " + bUrl + " - " + typeof bUrl);
    console.log("text: " + txt + " - " + typeof txt);
    console.log("hashtag: " + htag + " - " + typeof htag);



    var newTweet = new Tweet(
        userName: uName,
        imageUrl: iUrl,
        bannerUrl: bUrl,
        text: txt,
        hashTag: htag
    );
    console.log(newTweet);

    newTweet.save(function(err, newTweet)
        if(err)
            console.log(err);
        
        else
            console.dir(newTweet);
        

    );

    //console.log(twdata.id);
);

我收到的数据类型和内容的日志:

username: ZBBXXR - string
image url: http://pbs.twimg.com/profile_images/550347979886845953/9aU5othN_normal.jpeg - string
banner url: https://pbs.twimg.com/profile_banners/274821783/1418814026 - string
text: RT @NamiZelmon: happy birthday yoseob oppa???????????????????????????? @all4b2uty hope you like this???? #HappyYSDay http://t.co/C6W3LFg5F5 - string
hashtag: test - string

我没有收到任何错误,但插入到我的数据库中的文档如下(这只是一个空的 mongoDB 文档):

 __v: 0, _id: 54a9b1ba0114720c2711cbfc 

【问题讨论】:

如果您尝试仅使用一个必填字段插入会发生什么? 你能发帖twdata吗? 【参考方案1】:

我不敢相信我没有看到这个。 在我的架构中,我写了

module.Exports = tweetSchema;

虽然它应该是“出口”而不是大写

module.exports = tweetSchema;

由于大写拼写错误,在 './model/tweet.js 中调用 require('../schema/tweet.js') 时没有返回任何内容。 因此,将 undefined 传递给 './model/tweet.js' 中的 mongoose.model('Tweet',TweetSchema,"tweets") 并创建空的数据库文档。

【讨论】:

以上是关于无法使用 mongoose、Node.js 将数据插入到 mongoDB 中的 Document 字段中的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 Node.js 和 Mongoose 插入 MongoDB

在我的 node.js 应用程序中使用 mongodb 和 mongoose 在 Mocha 和 Chai 上运行测试后无法清除数据库

在我的 node.js 应用程序中使用 mongodb 和 mongoose 在 Mocha 和 Chai 上运行测试后无法清除数据库

使用 Node.js、Mongoose 和 Discord.js 的未定义错误 [无法读取未定义的属性]

无法使用 Node.js Express MongoDB Mongoose CoffeeScript 发布

Node.js 无法使用 Promise、Mongoose 和 GET 请求推送到全局数组