Skip to main content
博客
div+css 博客
javascript 博客
vue 博客
php 博客
微信 博客
php
drupal
composer
thinkphp
onethink
laravel
Swoole
dedecms
magento
smarty
ecshop
zencart
joomla
discuz
wordpress
yii
微信
抖音
ci
weiphp
destoon
python
plone
apache
nginx
cache
memcache
redis
div+css
javascript
jquery
typescript
Vue.js
Amaze
zepto
react
underscore
backbone
angular
lodash
layui
js特效
vbscript
photoshop ai
sql
mysql
mssql
oracle
regular
node.js
腾讯开放平台
dreamweaver
linux
seo
app
asp及asp.net
flash
iis
java
mac
wap
windows
dos
其它
浏览器
网络
AD域 (exchange)
虚拟机
AC
简写翻译
欢迎各位兄弟 发布技术文章
这里的技术是共享的
个人技术网_前端_后台_php_div_css_linux_javascript_seo
搜索表单
搜索
用户登录
用户名
*
密码
*
重设密码
You are here
首页
Cannot read property 'xxx' of undefined Cannot read property 'filter' of undefined
星期二, 2017-10-24 23:42 —
adminshiping1
这个错误很好理解,就是使用.xxx的那个对象为undefined,
类似的报错还有Cannot read property 'xxx' of null
看个例子
[javascript]
view plain
copy
try
{
var
b=undefined;
var
c = b.length;
}
catch
(err){
console.log(err.stack);
}
b定义为undefined,再使用b.length就会报这个错误,
如果b定义为null,
报错信息的第二行直接就定位到了什么文件多少行.
只是对于初学者有点懵逼.出现这种错误应该算是比较好解决的.
来自
http://blog.csdn.net/zzwwjjdj1/article/details/52125717
普通分类:
微信