0

我正在调用一个递归函数,我想将从递归调用中收到的错误连接回调用者。以下是我使用的代码。但是,看起来 _errors 变量在我的实例之间共享。我怎样才能使这个 _errors 变量对实例唯一。

var check = require('./validator.js').check;

var QV = function() {
  this._errors = {};
}

QV.prototype.a  = function (str) { check(str).len(1,4).notNull().isInt() };
QV.prototype.b  = function (str) { check(str).len(1,4).notNull().isInt() };
QV.prototype.c  = function (str) { check(str).len(1,4).notNull().isInt() };
QV.prototype.validator = function (opt) {
    qv = new QV();
    for(var i in opt) {
        try {
          if (opt[i].toString() === '[object Object]')
          {
            var errors =  qv.validator(opt[i]);
            console.log(qv._errors); //Here the qv._errors is overwritten with the 'sub' errors. I lose the error 'a' here.
            qv._errors[i] = errors;
          }
          else
          {
            qv[i](opt[i]);
          }
        } catch (e) {
            qv._errors[i] = e;
        }
    }
    return qv._errors;
}

module.exports = QV;

我使用此代码进行验证

var test = require('./test_validator.js');
var q = new test();

msg = q.validator({
    'a' : "asdf",
    'sub' : {
        'b' : "asdf",
        'c' : "bsdf"
    }
});
console.log(msg);
4

1 回答 1

3

答案已经在评论中了。我建议你以下

1) 使用 Javascript “严格”模式 - 它会使现代浏览器将此类错误转换为错误https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/Strict_mode

2) 对你的脚本使用 jshint - 它可以防止像这样的错误 http://jshint.com/

于 2013-01-20T15:23:05.770 回答