码迷,mamicode.com
首页 >  
搜索关键字:undefined    ( 5796个结果
变量未定义
变量未定义时, 其被赋为undefined let aaa; console.log("undefined ...",undefined); console.log("aaa ...", aaa); if(aaa==undefined){ console.log("aaa == undefined" ...
分类:其他好文   时间:2021-07-21 17:40:09    阅读次数:0
es6 新语法
一、新的变量声明方式 let/const { let _a = 20; } console.log(a); // a is not defined // ES5 console.log(a); // undefined var a = 20; // ES6 console.log(a); // a ...
分类:其他好文   时间:2021-06-30 17:41:18    阅读次数:0
DetailSwiper和DetailBaseInfo的实现思路
由于有现成的Swiper, SwiperItem可以使用,所以DetailSwiper的实现非常简单。 首先获取轮播图片的数组topImages,数组中存放的是一张张图片的url。 this.topImages = data.itemInfo.topImages; 然后将topImages发送给子组 ...
分类:其他好文   时间:2021-06-30 17:36:35    阅读次数:0
微信小程序报错:Cannot read property ‘forceUpdate‘ of undefined
微信小程序报错:Cannot read property ‘forceUpdate‘ of undefined ...
分类:微信   时间:2021-06-29 15:38:13    阅读次数:0
promise小技巧
.then()中的回调可以传入两个回调函数,分别接受第一个参数和第二个回调参数 如果第一个失败的回调被错误处理回调函数捕获了,那么下面的一个.then()回调会接受一个undefined正常回调值,这不是我们想看到的结果。解决方法就是在上一个失败回调中返回一个空白的Promise对象。 fetch( ...
分类:其他好文   时间:2021-06-28 18:38:11    阅读次数:0
标准对象
typeof 123; // 'number' typeof NaN; // 'number' typeof 'str'; // 'string' typeof true; // 'boolean' typeof undefined; // 'undefined' typeof Math.abs; ...
分类:其他好文   时间:2021-06-25 17:03:55    阅读次数:0
ES6 中的 Symbol 是什么?
前言记得刚找工作那会,几种数据类型是必问题,当时的答案一般都是七种——字符串(String)、数字(Number)、布尔(Boolean)、数组(Array)、对象(Object)、空(Null)、未定义(Undefined),时至今日,某些网络教程上还是这样的分类:其实,随着 ECMAScript ...
分类:其他好文   时间:2021-06-25 16:35:01    阅读次数:0
git放弃本地文件修改
写代码时,本来想切换到主分支,但是切换失败,因为我本地的代码修改了,所以想要放弃本地修改的代码(或者有时代码改的乱七八糟想放弃本地修改) 参考:https://www.cnblogs.com/qufanblog/p/7606105.html 1. 未使用git add 缓存代码 使用git chec ...
分类:其他好文   时间:2021-06-24 17:44:11    阅读次数:0
computed属性中$refs为undefined不能更新数据
问题描述 页面需要动态计算table高度,在computed属性中使用了$refs但是无法得到一个可用的数据 问题分析 computed中 return一个常量时不会再触发数据双向绑定,一开始$refs无效,此时computed属性返回了一个常量值,所以后续不在触发。 问题解决 // 使用setTi ...
分类:其他好文   时间:2021-06-23 16:26:40    阅读次数:0
数据类型内存分配--js基础
简单类型即基本数据类型,复杂数据类型即引用类型 简单数据类型:string,number,bool,undefined,null (其中null比较特殊,是空对象类型object) 复杂数据类型:通过new创建的对象 栈:由系统自动分配释放存放函数的参数值,局部变量的值等 简单数据类型是存在栈中的 ...
分类:Web程序   时间:2021-06-20 18:42:17    阅读次数:0
5796条   1 2 3 4 ... 580 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!