Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7157963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T12:58:52+00:00 2026-05-28T12:58:52+00:00

After checking out the official documentation , I am still not sure on how

  • 0

After checking out the official documentation, I am still not sure on how to create methods for use within mongoose to create & update documents.

So how can I do this?

I have something like this in mind:

mySchema.statics.insertSomething = function insertSomething () {
    return this.insert(() ?
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T12:58:53+00:00Added an answer on May 28, 2026 at 12:58 pm

    Methods are used to to interact with the current instance of the model. Example:

    var AnimalSchema = new Schema({
        name: String
      , type: String
    });
    
    // we want to use this on an instance of Animal
    AnimalSchema.methods.findSimilarType = function findSimilarType (cb) {
      return this.find({ type: this.type }, cb);
    };
    
    var Animal = mongoose.model('Animal', AnimalSchema);
    var dog = new Animal({ name: 'Rover', type: 'dog' });
    
    // dog is an instance of Animal
    dog.findSimilarType(function (err, dogs) {
      if (err) return ...
      dogs.forEach(..);
    })
    

    Statics are used when you don’t want to interact with an instance, but do model-related stuff (for example search for all Animals named ‘Rover’).

    If you want to insert / update an instance of a model (into the db), then methods are the way to go. If you just need to save/update stuff you can use the save function (already existent into Mongoose). Example:

    var Animal = mongoose.model('Animal', AnimalSchema);
    var dog = new Animal({ name: 'Rover', type: 'dog' });
    dog.save(function(err) {
      // we've saved the dog into the db here
      if (err) throw err;
    
      dog.name = "Spike";
      dog.save(function(err) {
        // we've updated the dog into the db here
        if (err) throw err;
      });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I thought I understood the basics of pointers, but after checking out some documentation
After checking out code for the first time from a repository into Eclipse using
After checking out a branch in a repository git always prints a list of
I just went through some MVC tutorials after checking this site out for a
Paperclip produces this error, after checking out the plugin's rails3 branch. My Gemfile has
I've been checking out Unity and it looks quite interesting. In particular after reading
according to netbeans documentation to check out from svn: Checking out Files from a
This has been bugging me today after checking the source out on a site.
I'm trying to come to terms with CoffeeScript after checking out LESS css yesterday,
After upgrading to the latest TortoiseSVN and checking out a repo, NetBeans is complaining

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.