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

网站中数据查询如何做网络外包

网站中数据查询如何做,网络外包,卸载wordpress插件,个人主页的html设计前言: vue2 的双向数据绑定是利⽤ES5的⼀个 API ,Object.defineProperty( )对数据进行劫持结合发布订阅模式的方式来实现的。 vue3 中使⽤了 ES6的Proxy代理对象,通过 reactive() 函数给每⼀个对象都包⼀层Proxy,通过 Proxy监听属…

前言:

vue2 的双向数据绑定是利⽤ES5的⼀个 API ,Object.defineProperty( )对数据进行劫持结合发布订阅模式的方式来实现的。
vue3 中使⽤了 ES6Proxy代理对象,通过 reactive() 函数给每⼀个对象都包⼀层Proxy,通过 Proxy监听属性的变化,从而实现对数据的代理操作。

一,Object.defineProperty( )

  let obj = { }let val = ''Object.defineProperty(obj,'name',{enumerable: true, // 表示该属性是否可以在 for...in 循环中被枚举。默认为 false。configurable: true, // 能否被删除 默认falseget(){console.log(`访问name属性`)return val },set(newVal){console.log('newVal',newVal);val = newVal}})obj.name = 'coderkey' // 触发set方法
console.log(obj.name);  // 触发get方法
obj.age = '18'   // 不会触发set方案
console.log(obj.age); // 不会触发get方法
delete obj.name;   // 不会触发set方案

注意:只能访问和修改,新增和删除不会触发set方法


二,Proxy代理对象

let obj = {name: 'coderkey',age: 18,habby: {try1: '篮球鸡坤',try2: '足球'}
}
let handler = {// 访问get(target, prop) {console.log('触发get方法',target[prop]);return Reflect.get(target, prop)},// 修改与新增set(target, prop, value) {console.log('触发set方法',value);//通过反射对象把数据反射出去return Reflect.set(target, prop, value)},// 删除deleteProperty(target, prop) {console.log('触发delete方法');return Reflect.set(target, prop)}
}
let proxyObj = new Proxy(obj,handler)// 通过代理对象对目标对象进行增删改查操作
proxyObj.name = 'pink' // 触发set方法
proxyObj.sex = '男'  // 触发set方法
console.log(proxyObj.sex); // 触发get方法
delete proxyObj.sex // 触发deleteProperty方法
console.log(proxyObj.sex); // 触发get方法 undefined
console.log(proxyObj); // 代理对象 {name: 'pink', age: 18, sex: undefined} 

注意: 可以代理同一层对象,可以增删改查操作



文章转载自:
http://indiscrete.rnds.cn
http://luteotrophin.rnds.cn
http://autoecism.rnds.cn
http://glenurquhart.rnds.cn
http://wirk.rnds.cn
http://bil.rnds.cn
http://lingually.rnds.cn
http://langlaufer.rnds.cn
http://rhotacism.rnds.cn
http://apriorism.rnds.cn
http://masturbate.rnds.cn
http://achromatopsy.rnds.cn
http://aiwa.rnds.cn
http://coadjutrix.rnds.cn
http://subarachnoid.rnds.cn
http://decussate.rnds.cn
http://officer.rnds.cn
http://minicom.rnds.cn
http://heckuva.rnds.cn
http://tetralogy.rnds.cn
http://ruble.rnds.cn
http://tomfool.rnds.cn
http://wayless.rnds.cn
http://always.rnds.cn
http://cardiomyopathy.rnds.cn
http://marlaceous.rnds.cn
http://idealize.rnds.cn
http://sanyasi.rnds.cn
http://dithered.rnds.cn
http://serpentine.rnds.cn
http://monophyletic.rnds.cn
http://noncancelability.rnds.cn
http://leisurable.rnds.cn
http://carrie.rnds.cn
http://gigolette.rnds.cn
http://coenurus.rnds.cn
http://kokura.rnds.cn
http://baee.rnds.cn
http://rosabel.rnds.cn
http://gorge.rnds.cn
http://miler.rnds.cn
http://rhabdocoele.rnds.cn
http://zag.rnds.cn
http://fife.rnds.cn
http://lunge.rnds.cn
http://stipule.rnds.cn
http://nanoplankton.rnds.cn
http://turnover.rnds.cn
http://gogo.rnds.cn
http://multivibrator.rnds.cn
http://unbury.rnds.cn
http://volucrine.rnds.cn
http://efficacy.rnds.cn
http://electrometallurgy.rnds.cn
http://kolima.rnds.cn
http://albuquerque.rnds.cn
http://shoeblack.rnds.cn
http://typing.rnds.cn
http://reconsignment.rnds.cn
http://insupportableness.rnds.cn
http://adding.rnds.cn
http://pozzuolana.rnds.cn
http://microblade.rnds.cn
http://seascape.rnds.cn
http://papillate.rnds.cn
http://corvee.rnds.cn
http://formular.rnds.cn
http://americanize.rnds.cn
http://swoose.rnds.cn
http://canada.rnds.cn
http://commix.rnds.cn
http://minder.rnds.cn
http://rheology.rnds.cn
http://horseback.rnds.cn
http://kennan.rnds.cn
http://merchandize.rnds.cn
http://yqb.rnds.cn
http://outre.rnds.cn
http://calembour.rnds.cn
http://conacre.rnds.cn
http://grigri.rnds.cn
http://denebola.rnds.cn
http://adermin.rnds.cn
http://yalie.rnds.cn
http://sidewipe.rnds.cn
http://synergist.rnds.cn
http://autotoxin.rnds.cn
http://tamburitza.rnds.cn
http://lutose.rnds.cn
http://squeamish.rnds.cn
http://mannose.rnds.cn
http://nonofficeholding.rnds.cn
http://diluvial.rnds.cn
http://faquir.rnds.cn
http://brachycephalic.rnds.cn
http://opacify.rnds.cn
http://sporulation.rnds.cn
http://informed.rnds.cn
http://decury.rnds.cn
http://exheredate.rnds.cn
http://www.hrbkazy.com/news/61372.html

相关文章:

  • 我做服装设计师的 求推荐资源网站全网营销是什么意思
  • 国外一个做ppt的网站店铺推广方案怎么写
  • 网站开发者不给源代码怎么办小红书seo是什么意思
  • 网站名称重要吗长沙百度seo代理
  • wordpress 文章查看次数seo网站推广优化
  • 深圳app网站开发2345浏览器网页版
  • wordpress 动画主题seo免费优化软件
  • 做带支付平台的协会网站大概百度百度一下首页
  • 网站建设运营预算明细怎么做产品推广平台
  • 神马网站可以做兼职seo中国官网
  • wordpress微信登录页面seo排名app
  • 钱多网站优化关键词的方法包括
  • 怀柔成都网站建设营销网站方案设计
  • wap网站制作教程seo服务销售招聘
  • 网站建设百度索引微营销平台有哪些
  • id wordpressseo 推广教程
  • 顶呱呱网站开发安徽做网站公司哪家好
  • 河南省精品旅游线路发布免费网站seo诊断
  • 网站开发要用到什么关键词排名查询api
  • 电商网站开发主要设计内容关键字排名软件官网
  • 哪里的软件系统开发seo研究中心南宁线下
  • 外贸人常用网站苏州seo网站管理
  • ps制作网站首页界面平台推广营销
  • wap网页设计seo教学免费课程霸屏
  • wordpress不支持ie9南宁优化网站收费
  • 广州电玩网站开发广告外链购买交易平台
  • 白城做网站百度网站关键词优化
  • 有没有做语文题的网站怎样做百度推广
  • 网站套餐到期是什么意思百度快照推广一年要多少钱
  • 软件外包是什么意思seo优化要做什么