摘要:
1.递归 function flat(arr,result){ if(!Object.prototype.toString.call(arr) == '[object Array]'){ return arr; } result=result||[]; for(var i=0;i<arr.lengt 阅读全文
摘要:
废话不多说,直入主题: 1.下载夜神安卓模拟器(https://www.yeshen.com/) 2.在模拟器里安装微信 3.登录微信,打开相应小程序 4.使用模拟器自带的文件管理器打开文件夹( /data/data/com.tencent.mm/MicroMsg/随机字符串/appbrand/pk 阅读全文
摘要:
import { Component,Output,Input, OnInit, EventEmitter } from '@angular/core'; @Component({ selector: 'app-pagination', templateUrl: './pagination.component.html', styleUrls: ['./pagination.comp... 阅读全文
摘要:
第一步: 准备工作 准备工作1: 配置机器名和数据库服务名一致 先检查A,B中的机器名和数据库服务名是否一致,这个很重要! 查看方法: 1.检查SQL Server 的服务器名称 1 2 3 4 use master go select @@servername select serverprope 阅读全文
摘要:
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 select * from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 阅读全文
摘要:
原型继承: 1.构造函数继承 在子类构造函数中,执行父类的构造函数,实现对父类构造函数的复用。 2.类式继承 在子类的原型上,实例化父类,实现对父类的原型继承。 3.组合继承 综合使用构造函数继承和类式继承 构造函数继承 类式继承 组合继承 阅读全文
摘要:
原型模式:将一个类的原型指向另个一类(实例化对象)的原型,实现对类的原型的共享。实现原理是基于JavaScript的原型链(prototype) 1.JavaScript中,所有函数(类)和部分原始数据类型(Number,String,Array,Function)具有prototype属性。 2. 阅读全文
摘要:
1 var Person=function(name,age){ 2 if(this instanceof Person){ 3 this.name=name; 4 this.age=age; 5 }else{ 6 return new Person(name,age); 7 } 8 } 9 Person.... 阅读全文