Coder Social home page Coder Social logo

be-mean-instagram-nodejs-exercises's People

Contributors

ajoao88 avatar angelorubin avatar augustoody avatar carloshenriqueribeiro avatar cerezini avatar charlesfgarcia avatar davidsonsns avatar douglashennrich avatar ednilsonamaral avatar fernandobd42 avatar filipe1309 avatar franciscovalerio avatar hc3 avatar higordiego avatar luanoliveira avatar lucasmoreiradev avatar marks88martinez avatar matheusjkweber avatar maurienefirmino avatar paulorbdev avatar rafaelign avatar rv-vmartins avatar sergiokopplin avatar sq-ricardo-pereira avatar suissa avatar tuchedsf avatar vcapretz avatar wellerson010 avatar xereda avatar zerodois avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

be-mean-instagram-nodejs-exercises's Issues

TypeError: 'this'

Código

OBS: Todas as aulas de nodejs que haviam 'this' apresentaram o mesmo erro(ex: aula de virtuals), estou com a versão v6.1.0 do node.

'use strict';
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/teste');

var PokemonSchema = new mongoose.Schema({
  name: String
  , description: String
  , type: String
  , attack: Number
  , defense: Number
  , height: Number
});

PokemonSchema.methods.findSimilarType = (cb) => {
  return this.model('Pokemon').find({type: this.type}, cb);
};

const PokemonModel = mongoose.model('Pokemon', PokemonSchema);
const poke = new PokemonModel({name: 'Insetoide', type: 'inseto'});

poke.findSimilarType((err, data) => {
  if(err) return console.log('ERRO: '+err);
  return data.foreach((pokemon) => console.log('Pokemon: '+pokemon));
});

ERRO

return this.model('Pokemon').find({type: this.type}, cb);
              ^
TypeError: this.model is not a function
    at model.PokemonSchema.methods.findSimilarType (/Users/oescarabel/Documents/programming/developments/workshop-be-mean/nodejs/mongoose-atomic/schema-method.js:15:15)
    at Object.<anonymous> (/Users/oescarabel/Documents/programming/developments/workshop-be-mean/nodejs/mongoose-atomic/schema-method.js:21:6)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Function.Module.runMain (module.js:575:10)
    at startup (node.js:160:18)
    at node.js:445:3

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.