web-dev-qa-db-ja.com

Mongooseモデルでメソッドを定義するにはどうすればよいですか?

私のlocationsModelファイル:

mongoose = require 'mongoose'
threeTaps = require '../modules/threeTaps'

Schema = mongoose.Schema
ObjectId = Schema.ObjectId

LocationSchema =
  latitude: String
  longitude: String
  locationText: String

Location = new Schema LocationSchema

Location.methods.testFunc = (callback) ->
  console.log 'in test'


mongoose.model('Location', Location);

それを呼び出すために、私は使用しています:

myLocation.testFunc {locationText: locationText}, (err, results) ->

しかし、エラーが発生します:

TypeError: Object function model() {
    Model.apply(this, arguments);
  } has no method 'testFunc'
37
Shamoon

クラスメソッドとインスタンスメソッドのどちらを定義するかを指定しませんでした。他の人がインスタンスメソッドをカバーしているので、 here's クラス/静的メソッドの定義方法:

animalSchema.statics.findByName = function (name, cb) {
    this.find({ 
        name: new RegExp(name, 'i') 
    }, cb);
}
43
pdoherty926

うーん-あなたのコードは次のように見えるはずです:

var mongoose = require('mongoose'),
    Schema = mongoose.Schema,
    ObjectId = Schema.ObjectId;

var threeTaps = require '../modules/threeTaps';


var LocationSchema = new Schema ({
   latitude: String,
   longitude: String,
   locationText: String
});


LocationSchema.methods.testFunc = function testFunc(params, callback) {
  //implementation code goes here
}

mongoose.model('Location', LocationSchema);
module.exports = mongoose.model('Location');

次に、呼び出しコードは上記のモジュールを必要とし、次のようにモデルをインスタンス化します。

 var Location = require('model file');
 var aLocation = new Location();

そして、次のようにメソッドにアクセスします。

  aLocation.testFunc(params, function() { //handle callback here });
27
iZ.

メソッドに関するMongooseドキュメント を参照してください

var animalSchema = new Schema({ name: String, type: String });

animalSchema.methods.findSimilarTypes = function (cb) {
  return this.model('Animal').find({ type: this.type }, cb);
}
17
Duncan_m
Location.methods.testFunc = (callback) ->
  console.log 'in test'

あるべき

LocationSchema.methods.testFunc = (callback) ->
  console.log 'in test'

メソッドはスキーマの一部である必要があります。モデルではありません。

1
user3573644