顶不住,顶不住
啊~~
昨天晚上写到凌晨3点多,今天早上起来又继续上班,下班又继续写,555555
七夕就这么过去了 T_T,实在没办法,不想写水文,时间又仓促,只能压榨自己了,趁着年轻还能压榨一下
这才第 14 天,8 月还有 17 天,等于要完成 8 月目标还要写 17 篇
靠!
坚持,加油 ~~ !!
有目标就不能放弃!!
本文代码比较多,大部分说明都在注释里了
就是提出 url 里的参数并转成对象
let url = 'https://www.junjin.cn?a=1&b=2'
function getUrlParams(url){
let reg = /([^?&=]+)=([^?&=]+)/g
let obj = { }
url.replace(reg, function(){
obj[arguments[1]] = arguments[2]
})
return obj
}
console.log(getUrlParams(url)) // { a: 1, b: 2 }
改变 this 指向用的,可以接收多个参数,第一个参数就是
Function.prototype.myCall = function(ctx) {
ctx = ctx || window // ctx 就是 obj
let fn = Symbol()
ctx[fn] = this // this 就是 foo
let result = ctx[fn](...arguments)
delete ctx[fn]
return result
}
let obj = { name: 沐华 }
function foo(){ return this.name }
// 就是把 foo 函数里的 this 指向,指向 obj
console.log( foo.myCall(obj) ) // 沐华
用 Symbol
是因为他是独一无二的,避免和 obj 里的属性重名
原理就是把 foo 添加到 obj 里,执行 foo 拿到返回值,再从 obj 里把 foo 删掉
原理同上,只不过 apply 接收第二个参数是数组,不支持第三个参数
Function.prototype.myApply = function(ctx) {
ctx = ctx || window
let fn = Symbol()
ctx[fn] = this
let result
if (arguments[1]) {
result = ctx[fn](...arguments[1])
} else {
result = ctx[fn]()
}
delete ctx[fn]
return result
}
bind
bind 不会立即执行,会返回一个函数
Function.prototype.myBind = function (ctx) {
const self = this
const fn = function(){}
const bind = function(){
const _this = this instanceof fn ? this : ctx
return self.apply(_this, [...args, ...arguments])
}
fn.prototype = this.prototype
bind.prototype = new fn()
return bind
}
foo.myBind(obj, 1)(2, 3)
,所以需要 [ ...args, ...arguments ]
合并参数new
,所以要判断原型 this instanceof fn
然后实现原型继承,如果对原型不太了解的话,请移步我上一篇文章 助力进击大厂,JavaScript前端考点总结
call、apply、bind的区别
this
指向立即执行
,bind 不会,而是返回一个函数多个参数
,apply
只能接受两个,第二个是数组
说明在注释里,接受两个参数,判断第二个参数是不是在第一个参数的原型链上
function myInstanceof(left, right) {
// 获得实例对象的原型 也就是 left.__proto__
let left = Object.getPrototypeOf(left)
// 获得构造函数的原型
let prototype = right.prototype
// 判断构造函数的原型 是不是 在实例的原型链上
while (true) {
// 原型链一层层向上找,都没找到 最终会为 null
if (left === null) return false
if (prototype === left) return true
// 没找到就把上一层拿过来,继续循环,再向上一层找
left = Object.getPrototypeOf(left)
}
}
个人感觉这个还蛮喜欢考的
// 来个示例数组
let arr = [1, 1, "1", "1", true, true, "true", {}, {}, "{}", null, null, undefined, undefined]
// 方法一
let unique1 = Array.from(new Set(arr))
console.log(unique1) // [1, "1", true, "true", {}, {}, "{}", null, undefined]
// 方法二
let unique2 = arr => {
let map = new Map() // 或者用空对象 let obj ={}利用对象属性不能重复的特性
let brr = []
arr.forEach( item => {
if(!map.has(item)){ // 如果是对象的话就判断 !obj[item]
map.set(item, true) // 如果是对象的话就 obj[item] = true 其他一样
brr.push(item)
}
})
return brr
}
console.log(unique2(arr)) // [1, "1", true, "true", {}, {}, "{}", null, undefined]
// 方法三
let unique3 = arr => {
let brr = []
arr.forEach(item => {
// 使用 indexOf 返回数组是否包含某个值 没有就返回 -1 有就返回下标
if(brr.indexOf(item) === -1) brr.push(item)
// 或者使用 includes 返回数组是否包含某个值 没有就返回false 有就返回true
if(!brr.includes(item)) brr.push(item)
})
return brr
}
console.log(unique3(arr)) // [1, "1", true, "true", {}, {}, "{}", null, undefined]
// 方法四
let unique4 = arr => {
// 使用 filter 返回符合条件的集合
let brr = arr.filter((item, index) => {
return arr.indexOf(item) === index
})
return brr
}
console.log(unique4(arr)) // [1, "1", true, "true", {}, {}, "{}", null, undefined]
上面的方法不能对引用类型去重,除非指针一样,指针是可以去重的,比如下面这样是可以去重的
let crr = []
let arr = [crr,crr]
就是把多维数组变成一维数组
// 来个示例数组
let arr = [1, [2, [3, [4, [5]]]]]
// 方法一
// flat() 默认拉平一层嵌套数组,传入数字几就拉平几层
// Infinity 是无穷大,不管嵌套多少层都给你拉平
let brr1 = arr.flat(Infinity)
console.log(brr1) // [1, 2, 3, 4, 5]
// 方法二
// 转成字符串,再去掉字符串里的 “[” 和 “]”,再把字符串转回数组
let brr2 = JSON.parse( "[" + JSON.stringify(arr).replace(/\[|\]/g, "") + "]")
console.log(brr2) // [1, 2, 3, 4, 5]
// 方法三
let brr3 = arr => {
// 用递归,用 for 循环加递归也可以,这里用 reduce
// reduce 累计器,本质上也是循环,
// cur 是循环的当前一个值,相当于 for循环里的arr[i], pre 是前一个值,相当于for循环里的arr[i-1]
let crr = arr.reduce((pre, cur) => {
return pre.concat(Array.isArray(cur) ? brr3(cur) : cur);
}, [])
return crr
}
console.log(brr3(arr)) // [1, 2, 3, 4, 5]
连续点击的情况下不会执行,只在最后一下点击过指定的秒数后才会执行
应用场景:点击按钮,输入框模糊查询,词语联想等
function debounce(fn, wait) {
let timeout = null
return function(){
if(timeout !== null) clearTimeout(timeout)
timeout = setTimeout(fn, wait)
}
}
function sayDebounce() {
console.log("防抖成功!")
}
btn.addEventListener("click", debounce(sayDebounce,1000))
频繁触发的时候,比如滚动或连续点击,在指定的间隔时间内,只会执行一次
应用场景:点击按钮,监听滚动条,懒加载等
// 方案1 连续点击的话,每过 wait 秒执行一次
function throttle(fn, wait) {
let bool = true
return function() {
if(!bool) return
bool = false
setTimeout(() => {
// fn() // fn中this指向window
fn.call(this, arguments) // fn中this指向btn 下面同理
btn = true
}, wait)
}
}
// 方案2 连续点击的话,第一下点击会立即执行一次 然后每过 wait 秒执行一次
function throttle(fn, wait) {
let date = Date.now()
return function() {
let now = Date.now()
// 用当前时间 减去 上一次点击的时间 和 间隔时间作对比
if (now - date > wait) {
fn.call(this, arguments)
date = now
}
}
}
function sayThrottle() {
console.log("节流成功!")
}
btn.addEventListener("click", throttle(sayThrottle,1000))
function myNew(fn,...args){
// 不是函数不能 new
if(typeof fn !== "function"){
throw new Error('TypeError')
}
// 创建一个继承 fn 原型的对象
const newObj = Object.create(fn.prototype);
// 将 fn 的 this 绑定给新对象,并继承其属性,然后获取返回结果
const result = fn.apply(newObj, args);
// 根据 result 对象的类型决定返回结果
return result && (typeof result === "object" || typeof result == "function") ? result : newObj;
}
function create(obj){
function Fn(){}
Fn.prototype = obj
return new Fn()
}
创建一个空对象并修改原型,这没啥说的,一般传个 null 进去
// 创建一个父类
function Parent(){}
Parent.prototype.getName = function(){ return '沐华' }
// 子类
function Child(){}
// 方式一
Child.prototype = Object.create(Parent.prototype)
Child.prototype.constructor = Child // 重新指定 constructor
// 方式二
Child.prototype = Object.create(Parent.prototype,{
constructor:{
value: Child,
writable: true, // 属性能不能修改
enumerable: true, // 属性能不能枚举(可遍历性),比如在 for in/Object.keys/JSON.stringify
configurable: true, // 属性能不能修改属性描述对象和能否删除
}
})
console.log(new Child().getName) // 沐华
ES5 的继承方式有很多种,什么原型链继承、组合继承、寄生式继承...等等,了解一种面试就够用了
// 创建一个父类
class Parent(){
constructor(props){
this.name = '沐华'
}
}
// 创建一个继承自父类的子类
class Child extends Parent{
// props是继承过来的属性, myAttr是自己的属性
constructor(props, myAttr){
// 调用父类的构造函数,相当于获得父类的this指向
super(props)
}
}
console.log(new Child().name) // 沐华
深拷贝
// 用 while 写一个通用的 myEach 遍历
function myEach(array, iteratee) {
let index = -1;
const length = array.length;
while (++index < length) {
iteratee(array[index], index);
}
return array;
}
function myClone(target, map = new WeakMap()){
// 引用类型才继续深拷贝
if (target instanceof Object) {
const isArray = Array.isArray(target)
// 克隆对象和数组类型
let cloneTarget = isArray ? [] : {}
// 防止循环引用
if (map.get(target)) {
// 有拷贝记录就直接返回
return map.get(target)
}
// 没有就存储拷贝记录
map.set(target,cloneTarget)
// 是对象就拿出同级的键集合 返回是数组格式
const keys = isArray ? undefined : Object.keys(target)
// value是对象的key或者数组的值 key是下标
myEach(keys || target, (value, key) => {
if (keys) {
// 是对象就把下标换成value
key = value
}
// 递归
cloneTarget[key] = clone(target[key], map)
})
return cloneTarget
} else {
return target
}
}
function getType(value) {
if (value === null) {
return value + ""
}
if (typeof value === "object") {
// 数组、对象、null 用 typeof 都是 object,所以需要处理下 以 {} 为例
let valueClass = Object.prototype.toString.call(value) // 转成这样 [object, Object]
let type = valueClass.split(" ")[1].split("") // 再转成 ["O", "b", "j", "e", "c", "t", "]"]
type.pop() // 再转成 ["o", "b", "j", "e", "c", "t"]
return type.join("").toLowerCase() // object
} else {
return typeof value;
}
}
console.log( getType(1) ) // number
console.log( getType("1") ) // string
console.log( getType(null) ) // null
console.log( getType(undefined) ) // undefined
console.log( getType({}) ) // object
console.log( getType(function(){}) ) // function
实现 add(1)(2)(3)
要求参数不固定,类似 add(1)(2, 3, 4)(5)()
这样也行
function reduce (...args) {
return args.reduce((a, b) => a + b)
}
function currying (fn) {
let args = []
return function temp (...newArgs) {
if (newArgs.length) {
args = [ ...args, ...newArgs ]
return temp
} else {
let val = fn.apply(this, args)
args = [] //保证再次调用时清空
return val
}
}
}
let add = currying(reduce)
console.log(add)
console.log(add(1)(2, 3, 4)(5)()) //15
console.log(add(1)(2, 3)(4, 5)()) //15
// 这个就不解释了,应该都用过
myAjax({
type: "get",
url: "https://xxx",
data: { name: "沐华", age:18 },
dataType: "json",
async: true,
success:function(data){
console.log(data);
},
error:function(){
alert('报错');
}
})
// 定义一个将 { name: "沐华", age:18 } 转成 name=沐华&age=18 这种格式的方法
function fn(data){
let arr = []
for(let i in data){
arr.push( i+'='+data[i])
}
return arr.join('&')
}
// 下面就是实现上面调用和传参的函数
function myAjax(options){
let xhr = null
let str = fn(options.data)
// 创建 xhr
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest()
}else{
xhr = new ActiveXObject('Microsoft,XMLHTTP')
}
// 这里只配置了 get 和 post
if(options.type === 'get' && options.data !== undefined){
// 创建 http 请求
xhr.open(options.type, options.url+'?'+str, options.async || true)
// 发送请求
xhr.send(null)
}else if(options.type === 'post' && options.data !== undefined){
xhr.open(options.type, options.url, options.async || true)
// 设置请求头
xhr.setRequestHeaders('Content-type','application/x-www-form-urlencoede')
xhr.send(str)
}else{
xhr.open(options.type, options.url, options.async || true)
xhr.send(null)
}
// 监听状态
xhr.onreadystatechange = function(){
if(xhr.readyState === 4 && xhr.status === 200){
let res = xhr.responseText
try{
if(options.success === undefined){
return xhr.responseText
}else if(typeof res === 'object'){
options.success(res)
}else if(options.dataType === 'json'){
options.success(JSON.parse(res))
}else{
throw new Error()
}
}catch(e){
if(options.error !== undefined){
options.error()
throw new Error()
}else{
throw new Error()
}
}
}
}
}
class MyPromise {
constructor(fn){
// 存储 reslove 回调函数列表
this.callbacks = []
const resolve = (value) => {
this.data = value // 返回值给后面的 .then
while(this.callbacks.length) {
let cb = this.callbacks.shift()
cb(value)
}
}
fn(resolve)
}
then(onResolvedCallback) {
return new MyPromise((resolve) => {
this.callbacks.push(() => {
const res = onResolvedCallback(this.data)
if (res instanceof MyPromise) {
res.then(resolve)
} else {
resolve(res)
}
})
})
}
}
// 这是测试案例
new MyPromise((resolve) => {
setTimeout(() => {
resolve(1)
}, 1000)
}).then((res) => {
console.log(res)
return new MyPromise((resolve) => {
setTimeout(() => {
resolve(2)
}, 1000)
})
}).then(console.log)
完整的 Promise 实在太长了,比 AJAX 还要长很多很多,所以就实现个极简版的,只有 resolve
和 then
方法,可以无限 .then
Promise.all 可以把多个 Promise 实例打包成一个新的 Promise 实例。传进去一个值为多个 Promise 对象的数组,成功的时候返回一个结果的数组,返回值的顺序和传进去的顺序是一致对应得上的,如果失败的话就返回最先 reject 状态的值
如果遇到需要同时发送多个请求并且按顺序返回结果的话,Promise.all就可以完美解决这个问题
MyPromise.all = function (promisesList) {
let arr = []
return new MyPromise((resolve, reject) => {
if (!promisesList.length) resolve([])
// 直接循环同时执行传进来的promise
for (const promise of promisesList) {
promise.then((res) => {
// 保存返回结果
arr.push(res)
if (arr.length === promisesList.length) {
// 执行结束 返回结果集合
resolve(arr)
}
}, reject)
}
})
}
传参和上面的 all 一模一样,传入一个 Promise 实例集合的数组,然后全部同时执行,谁先快先执行完就返回谁,只返回一个结果
MyPromise.race = function(promisesList) {
return new MyPromise((resolve, reject) => {
// 直接循环同时执行传进来的promise
for (const promise of promisesList) {
// 直接返回出去了,所以只有一个,就看哪个快
promise.then(resolve, reject)
}
})
}
let obj = {}
let input = document.getElementById('input')
let box = document.getElementById('box')
// 数据劫持
Object.defineProperty(obj, 'text', {
configurable: true,
enumerable: true,
get() {
// 获取数据就直接拿
console.log('获取数据了')
},
set(newVal) {
// 修改数据就重新赋值
console.log('数据更新了')
input.value = newVal
box.innerHTML = newVal
}
})
// 输入监听
input.addEventListener('keyup', function(e) {
obj.text = e.target.value
})
// 简易版的 hash 路由
class myRoute{
constructor(){
// 路由存储对象
this.routes = {}
// 当前hash
this.currentHash = ''
// 绑定this,避免监听时this指向改变
this.freshRoute = this.freshRoute.bind(this)
// 监听
window.addEventListener('load', this.freshRoute, false)
window.addEventListener('hashchange', this.freshRoute, false)
}
// 存储
storeRoute (path, cb) {
this.routes[path] = cb || function () {}
}
// 更新
freshRoute () {
this.currentHash = location.hash.slice(1) || '/'
this.routes[this.currentHash]()
}
}
点赞支持、手留余香、与有荣焉
感谢你能看到这里!
本文由哈喽比特于3年以前收录,如有侵权请联系我们。
文章来源:https://mp.weixin.qq.com/s/e0SRtAJ_L8ZWXklrhjp_mw
京东创始人刘强东和其妻子章泽天最近成为了互联网舆论关注的焦点。有关他们“移民美国”和在美国购买豪宅的传言在互联网上广泛传播。然而,京东官方通过微博发言人发布的消息澄清了这些传言,称这些言论纯属虚假信息和蓄意捏造。
日前,据博主“@超能数码君老周”爆料,国内三大运营商中国移动、中国电信和中国联通预计将集体采购百万台规模的华为Mate60系列手机。
据报道,荷兰半导体设备公司ASML正看到美国对华遏制政策的负面影响。阿斯麦(ASML)CEO彼得·温宁克在一档电视节目中分享了他对中国大陆问题以及该公司面临的出口管制和保护主义的看法。彼得曾在多个场合表达了他对出口管制以及中荷经济关系的担忧。
今年早些时候,抖音悄然上线了一款名为“青桃”的 App,Slogan 为“看见你的热爱”,根据应用介绍可知,“青桃”是一个属于年轻人的兴趣知识视频平台,由抖音官方出品的中长视频关联版本,整体风格有些类似B站。
日前,威马汽车首席数据官梅松林转发了一份“世界各国地区拥车率排行榜”,同时,他发文表示:中国汽车普及率低于非洲国家尼日利亚,每百户家庭仅17户有车。意大利世界排名第一,每十户中九户有车。
近日,一项新的研究发现,维生素 C 和 E 等抗氧化剂会激活一种机制,刺激癌症肿瘤中新血管的生长,帮助它们生长和扩散。
据媒体援引消息人士报道,苹果公司正在测试使用3D打印技术来生产其智能手表的钢质底盘。消息传出后,3D系统一度大涨超10%,不过截至周三收盘,该股涨幅回落至2%以内。
9月2日,坐拥千万粉丝的网红主播“秀才”账号被封禁,在社交媒体平台上引发热议。平台相关负责人表示,“秀才”账号违反平台相关规定,已封禁。据知情人士透露,秀才近期被举报存在违法行为,这可能是他被封禁的部分原因。据悉,“秀才”年龄39岁,是安徽省亳州市蒙城县人,抖音网红,粉丝数量超1200万。他曾被称为“中老年...
9月3日消息,亚马逊的一些股东,包括持有该公司股票的一家养老基金,日前对亚马逊、其创始人贝索斯和其董事会提起诉讼,指控他们在为 Project Kuiper 卫星星座项目购买发射服务时“违反了信义义务”。
据消息,为推广自家应用,苹果现推出了一个名为“Apps by Apple”的网站,展示了苹果为旗下产品(如 iPhone、iPad、Apple Watch、Mac 和 Apple TV)开发的各种应用程序。
特斯拉本周在美国大幅下调Model S和X售价,引发了该公司一些最坚定支持者的不满。知名特斯拉多头、未来基金(Future Fund)管理合伙人加里·布莱克发帖称,降价是一种“短期麻醉剂”,会让潜在客户等待进一步降价。
据外媒9月2日报道,荷兰半导体设备制造商阿斯麦称,尽管荷兰政府颁布的半导体设备出口管制新规9月正式生效,但该公司已获得在2023年底以前向中国运送受限制芯片制造机器的许可。
近日,根据美国证券交易委员会的文件显示,苹果卫星服务提供商 Globalstar 近期向马斯克旗下的 SpaceX 支付 6400 万美元(约 4.65 亿元人民币)。用于在 2023-2025 年期间,发射卫星,进一步扩展苹果 iPhone 系列的 SOS 卫星服务。
据报道,马斯克旗下社交平台𝕏(推特)日前调整了隐私政策,允许 𝕏 使用用户发布的信息来训练其人工智能(AI)模型。新的隐私政策将于 9 月 29 日生效。新政策规定,𝕏可能会使用所收集到的平台信息和公开可用的信息,来帮助训练 𝕏 的机器学习或人工智能模型。
9月2日,荣耀CEO赵明在采访中谈及华为手机回归时表示,替老同事们高兴,觉得手机行业,由于华为的回归,让竞争充满了更多的可能性和更多的魅力,对行业来说也是件好事。
《自然》30日发表的一篇论文报道了一个名为Swift的人工智能(AI)系统,该系统驾驶无人机的能力可在真实世界中一对一冠军赛里战胜人类对手。
近日,非营利组织纽约真菌学会(NYMS)发出警告,表示亚马逊为代表的电商平台上,充斥着各种AI生成的蘑菇觅食科普书籍,其中存在诸多错误。
社交媒体平台𝕏(原推特)新隐私政策提到:“在您同意的情况下,我们可能出于安全、安保和身份识别目的收集和使用您的生物识别信息。”
2023年德国柏林消费电子展上,各大企业都带来了最新的理念和产品,而高端化、本土化的中国产品正在不断吸引欧洲等国际市场的目光。
罗永浩日前在直播中吐槽苹果即将推出的 iPhone 新品,具体内容为:“以我对我‘子公司’的了解,我认为 iPhone 15 跟 iPhone 14 不会有什么区别的,除了序(列)号变了,这个‘不要脸’的东西,这个‘臭厨子’。