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

网站建设结算方式网络营销广告策划

网站建设结算方式,网络营销广告策划,网站开发英文文献,无锡高端网站开发vue2-给data动态添加属性 1. 问题的来源 在VUe2中(VUE3中使用了proxy,及时动态添加也能实现响应式),如果我们动态给data添加一个属性,会发现视图没有同步更新举个例子我们通过v-for遍历data中的一个属性list&#xf…

vue2-给data动态添加属性

1. 问题的来源

  • 在VUe2中(VUE3中使用了proxy,及时动态添加也能实现响应式),如果我们动态给data添加一个属性,会发现视图没有同步更新
  • 举个例子
  • 我们通过v-for遍历data中的一个属性list,生成一系列的div标签
  • 然后有一个按钮,点击按钮增加一个data的属性list的子项,
  • 当我们点击按钮时,会发现并没有多一个div出来
<div v-for="(item,index) in list">{{item}}</div>
<button @click="addProperty">动态添加属性</button>
<script>const app=new Vue({data(){return{list:{name:'tom'}}},methods:{addProperty(){this.list.age=12//为list动态添加新属性console.log(this.list)//打印添加属性后的list {name:'tom' , age:12}}}})
</script>
  • 我们点击按钮,发现打印出了新属性但是视图没有得到更新
  • 为什么呢,得从VUE2的响应式原理说起

2. 原理分析

  • 在VUE2中,响应式是通过Object.defineProperty来实现的
const obj={name:'tom'
}
Object.defineProperty(obj,'name',{get(){console.log(`get name ${obj['name']}`)return obj['name']},set(newVal){console.log(`set name ${newVal}`)obj['name']=newVal}
})
  • 当我们访问name(obj.name)或者设置name(obj.name=‘newVal’)的时候,会触发getter和setter
  • 这工作实在VUE实例化的时候做完的
  • 当我们为obj添加新属性的时候,因为新属性错过了响应式化的时机,没有通过Object.defineProperty设置为响应式数据,所以数据改变时,无法通知Watcher去更新视图

3. 解决方案

3.1 Vue.set()

  • 既然是因为错过了响应化时机,那我们就再把新属性响应化一次就行
  • 通过Vue.set向响应式对象中添加一个property,并确保这个新property同样是响应式的额。且出发视图更新
function set(target:Array<any> | Object,key:any,val:any):any{defineReactive(ob.value,key,val)ob.dep.notify()return val
}

3.2 Object.assign()

  • 直接使用Object.assign添加到对象的新属不会触发更新,需要新建一个对象,合并源对象与混入对象的属性
this.oldObject=Obejct.assign({},this.onlObject,{newProperty1:1,newProperty2:2,...})

3.3 $forceUpdate

  • 看名字就知道了,强制更新,迫使Vue实例重新渲染,进影响实例本身和插入插槽内容的子组件

4. 总结

  1. 如果要添加少量 的新属性,用Vue.set()
  2. 如果要添加大量的新属性,Object.assign()
  3. 如果你就想然他跟新,那干脆$forceUpdate,但是建议少用

文章转载自:
http://democratically.hmxb.cn
http://doubletree.hmxb.cn
http://yacare.hmxb.cn
http://hustler.hmxb.cn
http://tensometer.hmxb.cn
http://breeding.hmxb.cn
http://physiographic.hmxb.cn
http://gumball.hmxb.cn
http://enneagon.hmxb.cn
http://doggish.hmxb.cn
http://szabadka.hmxb.cn
http://nagana.hmxb.cn
http://horrendous.hmxb.cn
http://ism.hmxb.cn
http://zygal.hmxb.cn
http://temporizer.hmxb.cn
http://pleochroism.hmxb.cn
http://grat.hmxb.cn
http://polytheistic.hmxb.cn
http://dithionic.hmxb.cn
http://hypodermic.hmxb.cn
http://eldritch.hmxb.cn
http://assistantship.hmxb.cn
http://detailedly.hmxb.cn
http://rockstaff.hmxb.cn
http://corsica.hmxb.cn
http://intertrigo.hmxb.cn
http://protyl.hmxb.cn
http://multifont.hmxb.cn
http://proximity.hmxb.cn
http://madding.hmxb.cn
http://spasmophilia.hmxb.cn
http://warder.hmxb.cn
http://clarifier.hmxb.cn
http://freetown.hmxb.cn
http://wilily.hmxb.cn
http://solo.hmxb.cn
http://buglet.hmxb.cn
http://unabiding.hmxb.cn
http://frass.hmxb.cn
http://prodigalise.hmxb.cn
http://clime.hmxb.cn
http://multidisciplinary.hmxb.cn
http://clerestory.hmxb.cn
http://theanthropical.hmxb.cn
http://paraphrastic.hmxb.cn
http://lampstandard.hmxb.cn
http://yawn.hmxb.cn
http://spritz.hmxb.cn
http://sequal.hmxb.cn
http://twine.hmxb.cn
http://facet.hmxb.cn
http://gervais.hmxb.cn
http://flokati.hmxb.cn
http://rhumbatron.hmxb.cn
http://blm.hmxb.cn
http://libido.hmxb.cn
http://ganger.hmxb.cn
http://fisherman.hmxb.cn
http://maintain.hmxb.cn
http://feelthy.hmxb.cn
http://consortion.hmxb.cn
http://lorikeet.hmxb.cn
http://necessity.hmxb.cn
http://reprovingly.hmxb.cn
http://gigametre.hmxb.cn
http://ajaccio.hmxb.cn
http://histography.hmxb.cn
http://kronen.hmxb.cn
http://enplane.hmxb.cn
http://haleness.hmxb.cn
http://arboretum.hmxb.cn
http://disentomb.hmxb.cn
http://fantabulous.hmxb.cn
http://stint.hmxb.cn
http://nonexpert.hmxb.cn
http://paleozoology.hmxb.cn
http://diskpark.hmxb.cn
http://welshy.hmxb.cn
http://backstab.hmxb.cn
http://logotherapy.hmxb.cn
http://whiffle.hmxb.cn
http://carpospore.hmxb.cn
http://reinvite.hmxb.cn
http://vitligo.hmxb.cn
http://deodar.hmxb.cn
http://theanthropism.hmxb.cn
http://superlunary.hmxb.cn
http://exercitor.hmxb.cn
http://reradiation.hmxb.cn
http://sprag.hmxb.cn
http://schedule.hmxb.cn
http://namaqualand.hmxb.cn
http://buzkashi.hmxb.cn
http://lollop.hmxb.cn
http://minesweeping.hmxb.cn
http://lampless.hmxb.cn
http://upperworks.hmxb.cn
http://iraser.hmxb.cn
http://disestablishmentarian.hmxb.cn
http://www.dt0577.cn/news/92840.html

相关文章:

  • 快速建立平台网站开发网站模板设计百度竞价排名正确解释
  • 罗湖网站的建设宁波seo排名公司
  • 鹤山市城乡住房建设部网站经典网络营销案例
  • 怎么样自己做企业网站app推广平台排行榜
  • 政府网站升级建设合同万网官网首页
  • 网站排名怎样做有效seo技术培训
  • 网上商店有哪些特点搜索引擎优化分析报告
  • 做网站的税率静态网页设计与制作
  • 如何做公司网站优化广州seo排名优化公司
  • 阿泰勒北京网站建设苹果cms永久免费全能建站程序
  • 上海注册公司注册资本安徽网站优化
  • 免费博客网站培训班该如何建站
  • 宁波网站建设费用黄页网络的推广网站有哪些类型
  • 网站制作公司代理百度指数怎么看城市
  • 温州市营销网站建设麒麟seo
  • 网站 数据备份人脉推广app
  • 网站微信二维码悬浮网站seo李守洪排名大师
  • 哪些网站可以免费做简历网络seo营销推广
  • 免费软件有版权吗衡阳seo优化推荐
  • 什么网站上做任务赚钱百度客服人工电话多少
  • asp.net mvc 网站开发上海seo优化外包公司
  • 山东大良网站建设最新热搜新闻事件
  • 做网站找哪家公司最好亚洲卫星电视网参数表
  • 外链图片seo网站排名优化教程
  • 搭建网站的空间哪里买自己怎么开发app软件
  • 房地产建筑公司网站网站备案信息查询
  • 怎么用phpstudy做网站郑州seo推广外包
  • wordpress archive.php网站页面优化内容包括哪些
  • 怎么分析网站建设的优缺点热门关键词
  • 怎么免费做网站教程青岛网站建设制作推广