JS中“isnotdefined”如何判断defined,defined和undefined的区
别
JS中 “is not defined” 我今天了⼀些资料和⾃⼰试验了各种⽅法,都不能得到正解,故写了这个问题的解决⽅案。
⾸先什么是is not defined?
从字⾯意思上来讲就是未定义,也就是未申明。就是这个变量(对象)压根就没有。如下:
1. console.log(sojson);//sojson is not defined
可能还⼀知半解,我们继续往下看。
is not defined 和 undefined 区别。
我们⼤多数⼈都知道,却不知道,是未定义,如下:
1. var so;
2. console.log(so);//undefined
3. console.log(so.a);//so.a is undefined
这个时候输出的是。访问变量的属性就会提⽰is undefined就是这个变量so未定义值(类型);
⽽defined呢,如下:
1. console.log(so);//so is not defined
其实如果理解⼀下其实就是未申明。也就是可以理解变量的过程是,先声明后赋值,在赋值的过程中确定了这个变量的类型。
所以总结⼀下:is not defined 优先于 undefined ,也就是先判断这个对象是否申明了,如果没申明直接就 is not defined,如果已经申明,那么再看有没有赋值(类型),如果没有那么就是 undefined 或者访问对象的属性就是 is undefined 。
is not defined 如何避免
⽐如我们常⽤的,如果出现了jQuery is not defined,或者$ is not defined,那么我们按以下步骤来排查:
是否引⼊了(注意是否404)。
jQuery是否在依赖的之前引⽤(因为js加载是⾃上⽽下加载)。
是否过多引⼊jQuery,或者引⼊多个版本的jQuery。
我们⾃⼰定义对象的时候,对外要提供⽅法,如下:
1. //申明局部变量 so。
2. var so = {
3. a : function(){};
4. }
5. //对外提供访问。
6. window.so = so;
如何判断 undefined。
undefined 很好判断,如下:
1. var sojson;
2. console.log(sojson == undefined);//true
3. console.log(sojson === undefined);//true;
4. console.log(typeof sojson == 'undefined');//true
5. console.log(typeof sojson === 'undefined');//true
6. console.log(!sojson);//true
7. //... ...
如何判断is not defined
我在⽹上没到合适的资料来判断“is not defined”,我项⽬中因为是公共js需要解决,对象是否定义。都不好判断。所以我⽤⽐较low的⽅式来判断的,如果你有好的点⼦,请留⾔或者告知我,我加上。
1. try{
2. var x = sojson.demo;
3.
4. }catch(e){
5. console.ssage);//sojson is undefined
6. }
因为抛出了Exception,所以能catch,进⼊了catch模块。如果有多个,请分开cache,如下:
1. try{
2. var x = sojson.demo;
3.
4. }catch(e){
5. console.ssage);//sojson is undefined
6. }
原生js和js的区别7. try{
8. var y = sojson.y;
9.
10. }catch(e){
11. console.ssage);//sojson is undefined
12. }
因为出现⼀个,就不会往下执⾏了,所以要分开去处理。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论