我已经尝试了我能想到的一切,但我仍然无法将任何数据插入到我的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 }
答案 0 :(得分:2)
我无法相信我没有看到这一个。 在我的架构中,我写了
module.Exports = tweetSchema;
虽然应该是出口'非资本化的
module.exports = tweetSchema;
由于大写拼写错误,在' ./ model / tweet.js中调用require(' ../ schema / tweet.js')时没有返回任何内容。 因此,将未定义的内容传递给mongoose.model(' Tweet' TweetSchema,"推文")在' ./ model / tweet.js'并创建空的数据库文档。