遇到蹩脚的js调试时候需要注意的几个方法和点
本人菜鸟一名,遇到了就随笔点心得,大神勿喷。
1.考虑所传对象的type,alert(typeof(xxxx));
2.遇到浏览器调试js不好使记得打些输出行:
eq:
addNodeCache: function(setting, node) {
console.info('---node-----------------------------------:'+node);
console.info('---node-.id----------------------------------:'+node.length);
data.getCache(setting).nodes[data.getNodeCacheId(node.tId)] = node;
},
getNodeCacheId: function(tId) {
console.info('---tId------------------------------------:'+tId);
return tId.substring(tId.lastIndexOf("_")+1);
},