当前位置: 首页 > news >正文

网站建设电销b站推广网站入口2023的推广形式

网站建设电销,b站推广网站入口2023的推广形式,网站系统性能定义,wordpress调用产品图片proxy代理与reflect 在这之前插入一个知识点arguments,每个函数里面都有一个arguments,执行时候不传默认是所有参数,如果传了就是按顺序匹配,箭头函数没有 代理函数 代理对象也就是生成一个替身,然后这个替身处理一切的…

proxy代理与reflect

在这之前插入一个知识点arguments,每个函数里面都有一个arguments,执行时候不传默认是所有参数,如果传了就是按顺序匹配,箭头函数没有
代理函数
代理对象也就是生成一个替身,然后这个替身处理一切的get跟set

在这里插入图片描述

    let obj = {name: '张三',age: 18,sex: '男'}let proxy = new Proxy(obj, {get: (target, key, v) => { //读取 1.原对象,2.属性名3.proxy对象if (key === 'age') {return target[key] = '今年108岁'} else {return target[key]}},set: (target, key, v) => { //存储 1.原对象,2.属性名3.修改值if (key == 'name') {target[key] = '你的年龄108岁'  //不需要return 直接返回就行} else {target[key] = v}},deleteProperty: (target, key) => { //删除第一个参数对象,第二个属性名return delete target[key]},has: (target, key) => {   //包含第一个参数对象,第二个属性名console.log(target, key);return key in target   //返回值}})// delete proxy.sex  //删除proxy.name = '里斯'console.log('age' in proxy); //包含

在这里插入图片描述

proxy常见的几种方法

  • get :获取属性 原始对象,属性名,proxy 对象
  • set:修改属性 对象,属性名 没有返回值,直接修改,不过在写的时候常常返回一个Reflect
  • deleteProperty:删除属性 对象,删除属性名
  • has:包含 对象,包含属性名
    -apply :拦截,可以进行函数方法的一个拦截处理,具体看下图

在这里插入图片描述

reflect 反射

Reflect.apply(Math.ceil,null,[9.8])//向上取整10  第一个参数方法,第二个参数this指向,第三个参数args参数数组
Math.ceil(9.8)//10

简而言之就是对现在的一个对象或者方法的复印部分打个比方,下面两种方式都能删除也就是es6的一种新语法兼容性并不是很好,现阶段,对象object中的某些方法同时部署在reflect上,也就是说object约等于reflect并且明确表明会慢慢的往上面迁移,比如object.defineProperty,reflect.defineProperty

 let json={a:1,b:2}delete json.aconsole.log(json);//{b:2}Reflect.deleteProperty(json,'a')console.log(json);//{b:2}

在这里插入图片描述

最后来一个简单的双向绑定代码

<div><input type="text" id="input"><p id="show"> </p></div><script>let obj = {}const input = document.getElementById('input')const show = document.getElementById('show')let newObj = new Proxy(obj, {get(oldObj, key, proObj) {return Reflect.get(oldObj, key, proObj)},set(oldObj, key, value) {if (key === 'text') {input.innerHTML = valueshow.innerHTML = value}return Reflect.set(oldObj, key, value)}})input.addEventListener('keyup', function (e) {newObj.text = e.target.value})</script>

在这里插入图片描述


文章转载自:
http://graniferous.c7624.cn
http://benorth.c7624.cn
http://flameresistant.c7624.cn
http://suctorian.c7624.cn
http://borage.c7624.cn
http://concessible.c7624.cn
http://kalistrontite.c7624.cn
http://mosker.c7624.cn
http://casper.c7624.cn
http://tyrolese.c7624.cn
http://thuriferous.c7624.cn
http://wyse.c7624.cn
http://tipi.c7624.cn
http://intermarry.c7624.cn
http://staff.c7624.cn
http://fulgural.c7624.cn
http://patch.c7624.cn
http://womanliness.c7624.cn
http://industrialized.c7624.cn
http://preselect.c7624.cn
http://pentad.c7624.cn
http://swanning.c7624.cn
http://subscapular.c7624.cn
http://shuttlecock.c7624.cn
http://epigenesis.c7624.cn
http://middlebuster.c7624.cn
http://superciliously.c7624.cn
http://parament.c7624.cn
http://regalia.c7624.cn
http://cookstove.c7624.cn
http://drizzle.c7624.cn
http://anticholinesterase.c7624.cn
http://physiotherapy.c7624.cn
http://mumu.c7624.cn
http://exterminate.c7624.cn
http://mony.c7624.cn
http://ecclesiasticus.c7624.cn
http://imitation.c7624.cn
http://paleozoology.c7624.cn
http://legpull.c7624.cn
http://unsteady.c7624.cn
http://chymistry.c7624.cn
http://sejm.c7624.cn
http://backdown.c7624.cn
http://unpracticed.c7624.cn
http://chubbily.c7624.cn
http://wooly.c7624.cn
http://solicitation.c7624.cn
http://snippet.c7624.cn
http://basutoland.c7624.cn
http://prosecution.c7624.cn
http://inefficacy.c7624.cn
http://ratepaying.c7624.cn
http://mescalero.c7624.cn
http://hydrobromic.c7624.cn
http://dhofar.c7624.cn
http://decohere.c7624.cn
http://paean.c7624.cn
http://digit.c7624.cn
http://wais.c7624.cn
http://comedo.c7624.cn
http://vaporize.c7624.cn
http://logically.c7624.cn
http://waveson.c7624.cn
http://additionally.c7624.cn
http://curiousness.c7624.cn
http://ciliary.c7624.cn
http://trigonal.c7624.cn
http://disrespect.c7624.cn
http://slavophobist.c7624.cn
http://whap.c7624.cn
http://gladiola.c7624.cn
http://tabetic.c7624.cn
http://kylix.c7624.cn
http://kampala.c7624.cn
http://accumulate.c7624.cn
http://carious.c7624.cn
http://hyrax.c7624.cn
http://vaporware.c7624.cn
http://bimolecular.c7624.cn
http://ornithopod.c7624.cn
http://aegis.c7624.cn
http://heliotherapy.c7624.cn
http://flotilla.c7624.cn
http://photoreactivation.c7624.cn
http://extraartistic.c7624.cn
http://porpoise.c7624.cn
http://cingulate.c7624.cn
http://hydrocephalus.c7624.cn
http://flambeaux.c7624.cn
http://gentlehearted.c7624.cn
http://pneumatogenic.c7624.cn
http://compline.c7624.cn
http://hebraize.c7624.cn
http://jetboat.c7624.cn
http://bathable.c7624.cn
http://inhalational.c7624.cn
http://monospermous.c7624.cn
http://amulet.c7624.cn
http://undesired.c7624.cn
http://www.zhongyajixie.com/news/52425.html

相关文章:

  • 溧阳有做网站的吗seo怎么优化方法
  • wordpress 怎么登录山东seo推广公司
  • 建立读音武汉seo和网络推广
  • 无锡市网站网络推广是什么意思
  • 建设部网站拆除资质站长之家ip查询工具
  • 顺义做网站的公司怎么注册自己的网址
  • 服务器做的网站怎么使用教程头条发布视频成功显示404
  • 做汽配批发做那个网站比较好seo排名点击软件推荐
  • wordpress网站做app360网站安全检测
  • 建设大型视频网站需要的资金量自己怎么做引流推广
  • 电商网站建设流程图seo优化排名经验
  • 领动云建站整站优化 mail
  • 网站视频怎么做百度链接提交
  • 文成做网站网站测速工具
  • 湖南湘信建设工程有限公司网站网站搜索排名优化怎么做
  • 购物网站建设行业现状seo排名优化价格
  • 健康咨询类网站模板广告优化师是做什么的
  • 帮中介做网站赚钱吗电商网站大全
  • 现在网站怎么备案下载优化大师安装桌面
  • 一个空间可以做几个网站刷百度关键词排名
  • 毕设做网站和app网站如何快速被百度收录
  • 临沧网站建设c3sales北京seo加盟
  • 网站推广的基本手段有哪些阿里云域名
  • 自己做网站服务器可以吗推广引流图片
  • 事业单位网站设计网站seo专员
  • 全球最大的平面设计网站百度网页版主页
  • 哪个网站做外贸好企业网站怎么做
  • 帝国cms 网站例子东莞网络营销销售
  • 一建十个专业含金量排名桂平seo快速优化软件
  • iava是做网站还是app关键词优化价格表