0

Bookshelf モデルで 'this' に関する奇妙な動作が見られ、困惑しています。「保存」イベントのフックを使用してパスワードをハッシュしようとしています。ただし、「this」の属性を取得/設定しようとすると、「this」が未定義であると不平を言います。

'use strict';

var DB = require('../config/db'),
    _ = require('underscore'),
    str = require('underscore.string'),
    Base = require('./base'),
    Promise = require('bluebird'),
    bcrypt = Promise.promisifyAll(require('bcrypt'));

var User = DB.Model.extend({
  tableName: 'users',
  hasTimestamps: ['createdAt', 'updatedAt'],

   // convert snake_case to camelCase
  parse: function(attrs) {
    return _.reduce(attrs, function(memo, val, key) {
      memo[str.camelize(key)] = val;
      return memo;
    }, {});
  },

  // convert camelCase to snake_case
  format: function(attrs) {
    return _.reduce(attrs, function(memo, val, key) {
      memo[str.underscored(key)] = val;
      return memo;
    }, {})
  },

  initialize: function() {
    this.on('saving', this.hashPassword, this);
  },

  hashPassword: function() {
    return bcrypt.genSaltAsync(10).then(function(salt){
      return bcrypt.hashAsync(this.get('password'), salt);
    }).then(function(hash){
      this.set({'password':hash});
    });
  }
});

module.exports = User;

ユーザー モデルを保存しようとすると、次のスタック トレースが表示されます。

Debug: internal, implementation, error 
    Error: TypeError: Cannot call method 'get' of undefined
    at Object.exports.create (/usr/src/app/node_modules/boom/lib/index.js:21:17)
    at Object.exports.internal (/usr/src/app/node_modules/boom/lib/index.js:254:92)
    at Object.exports.badImplementation (/usr/src/app/node_modules/boom/lib/index.js:290:23)
    at null.<anonymous> (/usr/src/app/routes/users.js:31:20)
    at tryCatcher (/usr/src/app/node_modules/bluebird/js/main/util.js:24:31)
    at Promise._settlePromiseFromHandler (/usr/src/app/node_modules/bluebird/js/main/promise.js:454:31)
    at Promise._settlePromiseAt (/usr/src/app/node_modules/bluebird/js/main/promise.js:530:18)
    at Promise._settlePromises (/usr/src/app/node_modules/bluebird/js/main/promise.js:646:14)
    at Async._drainQueue (/usr/src/app/node_modules/bluebird/js/main/async.js:177:16)
    at Async._drainQueues (/usr/src/app/node_modules/bluebird/js/main/async.js:187:10)
    at Async.drainQueues (/usr/src/app/node_modules/bluebird/js/main/async.js:15:14)
    at process._tickDomainCallback (node.js:486:13)

何か案は?

4

1 に答える 1