最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - node.js Array.length issue - Stack Overflow

programmeradmin2浏览0评论

array.length is returning 0 always.... Its returning 0 even some item added into the array...

 function validate () { 

  error = new Array();

  if(req.body.category_id==""){ 
    error['category_id'] = "Please select category";
  }

  if(req.body.text==""){ 
    error['text'] = "Enter the word";
  }

  if(!(req.body.email!="" && req.body.email.test(/@/))){ 
    error['email'] = "Invalid email id";
  }

  if((req.session.number1+req.session.number2)!=req.body.captcha){ 
    error['captcha'] = "Captcha verification failed";
  }  

 console.log(error.length);
 console.log(error['category_id']);

  if(error.length){ 
    return false;   
  }else{ 
    return true;
  }
}

result of the console.log
//0
//Please select category

array.length is returning 0 always.... Its returning 0 even some item added into the array...

 function validate () { 

  error = new Array();

  if(req.body.category_id==""){ 
    error['category_id'] = "Please select category";
  }

  if(req.body.text==""){ 
    error['text'] = "Enter the word";
  }

  if(!(req.body.email!="" && req.body.email.test(/@/))){ 
    error['email'] = "Invalid email id";
  }

  if((req.session.number1+req.session.number2)!=req.body.captcha){ 
    error['captcha'] = "Captcha verification failed";
  }  

 console.log(error.length);
 console.log(error['category_id']);

  if(error.length){ 
    return false;   
  }else{ 
    return true;
  }
}

result of the console.log
//0
//Please select category
Share Improve this question asked Nov 21, 2013 at 7:10 balaphpbalaphp 1,3265 gold badges20 silver badges41 bronze badges 3
  • this is not solution but can you try console.log(error.length); inside first IF condition. we may get more details after looking at its result. – Pranav Commented Nov 21, 2013 at 7:15
  • 3 Seems to me that you're using your "Array" as a map/object. – NilsH Commented Nov 21, 2013 at 7:16
  • @Pranav its going else section only.... – balaphp Commented Nov 21, 2013 at 7:17
Add a ment  | 

3 Answers 3

Reset to default 3

Array.length only counts values whose key is numeric. You are using strings as the keys, so your length is always 0. Though legal, (since Arrays are Objects) this is confusing and isn't a good fit for an array.

As @Sudhir suggests, use an "object" or "hash" : the { } notation. Much clearer. (Though I disagree with him modifying with the Object.prototype)

Javascript does not have associative arrays, make it object like:

//function to get size of object
Object.prototype.size = function(obj) {
    var size = 0, key;
    for (key in obj) {
        if (obj.hasOwnProperty(key)) size++;
    }
    return size;
};
var error = {}; //object
if(req.body.category_id==""){ 
    error['category_id'] = "Please select category";
}
...
//rest of your code
if( Object.size(error) ){ //check if we have error
    return false;   
}else{ 
    return true;
}

//check the size of object
console.log(  Object.size(error) );
console.log(error['category_id']);
var error = function(){};
error.prototype.test=[1,2,3];  //1,2,3 only example
console.log(new error().test.length);

Use JavaScript.prototype

But objects created with this function will have this property in their prototype chain (as prototype property of error points to the object that has test property defined.

发布评论

评论列表(0)

  1. 暂无评论