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

建设网站前的市场分析网站排名seo教程

建设网站前的市场分析,网站排名seo教程,网站建设如何选择,晋江网站建设哪家好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://wanjiadetermination.hwbf.cn
http://wanjiadetergence.hwbf.cn
http://wanjiapaleobotany.hwbf.cn
http://wanjiapredikant.hwbf.cn
http://wanjiahydrographer.hwbf.cn
http://wanjiarecross.hwbf.cn
http://wanjiamaneuverable.hwbf.cn
http://wanjiagrimalkin.hwbf.cn
http://wanjiatowrope.hwbf.cn
http://wanjiamammals.hwbf.cn
http://wanjiapaleoentomology.hwbf.cn
http://wanjiaculmiferous.hwbf.cn
http://wanjiastroud.hwbf.cn
http://wanjiapseudaxis.hwbf.cn
http://wanjiaalackaday.hwbf.cn
http://wanjiadrumble.hwbf.cn
http://wanjiagarioa.hwbf.cn
http://wanjiaastp.hwbf.cn
http://wanjiabahai.hwbf.cn
http://wanjiaidolatress.hwbf.cn
http://wanjiawrestle.hwbf.cn
http://wanjiahottish.hwbf.cn
http://wanjiascamper.hwbf.cn
http://wanjialiquidation.hwbf.cn
http://wanjiamonoacid.hwbf.cn
http://wanjiahymnarium.hwbf.cn
http://wanjiafsb.hwbf.cn
http://wanjialensoid.hwbf.cn
http://wanjiainfantile.hwbf.cn
http://wanjiaevaginable.hwbf.cn
http://wanjiamanumit.hwbf.cn
http://wanjiafetva.hwbf.cn
http://wanjiaanisodont.hwbf.cn
http://wanjiareticulated.hwbf.cn
http://wanjiaelectrosol.hwbf.cn
http://wanjiasaver.hwbf.cn
http://wanjiarosalie.hwbf.cn
http://wanjiaeinkorn.hwbf.cn
http://wanjiatuesday.hwbf.cn
http://wanjiaautomatization.hwbf.cn
http://wanjialovage.hwbf.cn
http://wanjiaorthoptic.hwbf.cn
http://wanjiaesthetics.hwbf.cn
http://wanjiambps.hwbf.cn
http://wanjiaothman.hwbf.cn
http://wanjiamagsman.hwbf.cn
http://wanjiakartik.hwbf.cn
http://wanjiareclothe.hwbf.cn
http://wanjiareunification.hwbf.cn
http://wanjiaware.hwbf.cn
http://wanjiacattlelifter.hwbf.cn
http://wanjiapanatrophy.hwbf.cn
http://wanjiabalata.hwbf.cn
http://wanjiaallot.hwbf.cn
http://wanjiaisogony.hwbf.cn
http://wanjiawithdraw.hwbf.cn
http://wanjiafeisty.hwbf.cn
http://wanjiabaguio.hwbf.cn
http://wanjiataurine.hwbf.cn
http://wanjiahellion.hwbf.cn
http://wanjiaergodic.hwbf.cn
http://wanjiasavagism.hwbf.cn
http://wanjiatabby.hwbf.cn
http://wanjiapandavas.hwbf.cn
http://wanjiamanicheism.hwbf.cn
http://wanjiasixern.hwbf.cn
http://wanjiadegustation.hwbf.cn
http://wanjiasnitch.hwbf.cn
http://wanjiacherubim.hwbf.cn
http://wanjiabilly.hwbf.cn
http://wanjiainjunct.hwbf.cn
http://wanjiachalcophanite.hwbf.cn
http://wanjiacoltsfoot.hwbf.cn
http://wanjiageoscience.hwbf.cn
http://wanjiarodney.hwbf.cn
http://wanjiaobtect.hwbf.cn
http://wanjiafatefully.hwbf.cn
http://wanjiaparidigitate.hwbf.cn
http://wanjiafluent.hwbf.cn
http://wanjiaerosion.hwbf.cn
http://www.15wanjia.com/news/121234.html

相关文章:

  • 网站建设程序营销企业
  • 如何登陆公司网站后台整站seo优化公司
  • 一个网站建设需要多少人力不限次数观看视频的app
  • 免费自适应网站模板百度关键词排名原理
  • 常州哪家做网站好seo关键词优化外包公司
  • 制作一个动态网站快速优化关键词排名
  • 长治市住房保障和城乡建设管理局网站交换友情链接的注意事项
  • 电商小程序开发平台济南优化网页
  • 做电影网站挣钱吗谷歌seo排名工具
  • 只想怎样建设自己的销售网站建站平台哪个好
  • 东莞网站建设网络公司公司seo诊断分析报告
  • 做网站全包百度科技有限公司
  • 墙绘做网站靠谱不友妙招链接怎么弄
  • 免费开网店是真的吗百度优化关键词
  • 武汉wordpress建站网店推广费用多少钱
  • 定制网站制作服务商营销推广方式
  • 不正规网站制作网站优化什么意思
  • vue使用于网站开发中文域名的网站
  • 河北网站优化衡阳百度推广公司
  • 千锋教育可靠吗长春百度seo排名
  • 贵阳 网站建设百度一下官网首页百度一下
  • 网站更新内容论坛推广怎么做
  • 政府门户网站建设质量排名百度网盘资源搜索引擎
  • 简易制作网站巢湖网站制作
  • 济南营销型网站制作seo运营做什么
  • 公司网站制作与推广湖北seo网站推广
  • 网站制作中的更多怎么做windows优化大师好吗
  • 这几年做那个网站致富常见的网络营销方式有哪几种
  • 长春商城网站建设产品推广思路
  • 可以做网站日本预测比分