摘要: for...in 循环:只能获得对象的键名,不能获得键值 for...of 循环:允许遍历获得键值 var arr = ['red', 'green', 'blue'] for(let item in arr) { console.log('for in item', item) } /* for 阅读全文
posted @ 2021-12-11 17:10 方寸间 阅读(612) 评论(0) 推荐(0) 编辑
摘要: json对象没有length属性 function getJsonLength(jsonData){ //这里一定注意,变量jsonLength要定义在for循环前 var jsonLength = 0; for(var item in jsonData){ jsonLength++; } retu 阅读全文
posted @ 2021-12-11 16:52 方寸间 阅读(908) 评论(0) 推荐(0) 编辑
摘要: this.$axios.post('https://....php',this.$qs.stringify({ user: 'suess' })) .then(res => { this.dataa = res.data; //这里的dataa视图不会更新,在其他函数里this.dataa没有值 } 阅读全文
posted @ 2021-12-10 22:09 方寸间 阅读(2527) 评论(0) 推荐(0) 编辑
摘要: title: 'Num', key: 'num', sortable: true, sortMethod:function(a,b,type){ //可以用Number()或者parseInt(a)转成数字 let aa = Number(a); let bb = Number(b); if(typ 阅读全文
posted @ 2021-12-08 20:54 方寸间 阅读(118) 评论(0) 推荐(0) 编辑