Solo Project Day Five: Enter the Database
Today's goal was simply to move the data I was receiving from Twitter via Firebase, into my database. While this seemed simple in concept, as someone new to programming, it was difficult in practice.
I'm using Angular for my project, and I have a controller that calls to Firebase for the user's authentication. The data is returned to the controller, and then put in a factory for temporary storage, and for use between controllers.
The same controller then makes an AJAX POST request to the server, which is then routed to the database using Mongoose. I also had to fuss a lot with my schema in Mongoose, which took up a good deal of my time.
Thankfully, a classmate of mine was able to offer some help. I'm also using Mongoose sub-documents in my project, and I could not for the life of me figure out how to import the sub-document modules into my main schema module.
Here is the correct way to do it:
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var User = require('../models/user.model');
var Draft = require('../models/draft.model').schema;
var Post = require('../models/post.model').schema;
My issue was the .schema
at the end of the sub-document require statements. I wasn't using the .schema
initially, so it wasn't working at all.
Today's Research
- Routing - Express Documentation
- Difference Between
app.use()
androuter.use()
in Express - Stack Overflow - Sub-Documents - Mongoose Documentation
- MongoDB: Updating Subdocument - Stack Overflow - Another handy piece of information that Alex showed me today, the use of the
$
positional operator when referring to Mongoose sub-documents. - GET users/lookup - Twitter Developer Documentation