I just installed the new version of meteor 1.4 and I'm following the Alura tutorial. Everything OK at host installation and startup: 3000 and meteor information appeared. But as soon as I create a folder called "models" and insert a file named "...
I am creating a discussion forum from scratch, but I already have a good part of the skeleton web like: creation of a topic, respond and view topic. My doubt is between using php (not manjar yet) or jquery plus API, and the database being used w...
I need to perform a find on two collections in mongodb using aggregation and put the results into a single array.
I'm trying to do this, but it does not work.
I have the collection Visits and Opportunities and want to summarize the amount...
I have created a collection in mondoDB called Mangas , where it has " name, author, gender and info
Gender is array.
I have a form that will receive the values name, author and info, Checkbox needs to be filled as Array with values to...
I'm using fullcalendar, nodejs, and mongoose.
I have already been able to generate the json file.
But by passing the path in fullscalendar js, I can not retrieve events.
I created a test file in json and called it as follows:
script(type='...
I'm having trouble connecting MongoDB.
Follow the code:
var express= require('express');
var app= express();
var bodyParser= require('body-parser');
var db_string= 'mongodb://localhost/teste'
var mongoose= require('mongoose');
var db= m...
I want to display the DB data in a table, but so far I have been able to do it with a ListView . How can I do this but using a DataGridView ?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System...
Imagine the following collection:
{
_id:ObjectId("123456..."),
user:"João",
artigos:[
{
id: new ObjectId(),
titulo:"Lorem ispsum.",
texto:"Lorem ipsum dolor sit amet..."
}
]
}...