文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Vue中computed计算属性和data数据怎么获取

2023-06-29 08:57

关注

这篇文章主要介绍“Vue中computed计算属性和data数据怎么获取”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Vue中computed计算属性和data数据怎么获取”文章能帮助大家解决问题。

computed计算属性和data数据获取

获取到数据(对象、数组),截取一部分显示到页面中,用computed计算属性来实现截取数据然后直接输出到页面。

<div class="detailBox">  <h2 class="detailHead">{{ActiveData.title}}</h2>  <div class="detailCon">    <p><b>活动时间:</b>{{ActStart}} 至 {{ActEnd}}</p>    <p><b>报名时间:</b>{{SigStart}} 至 {{SigEnd}}</p>  </div></div>
data() {   return {     ActiveData:"",//活动详情所有数据  }},methods:{//获取对应的数据    this.ActiveData = response.data.data;}
computed:{    ActStart(){      console.log(this.ActiveData.activity_starttime);      return this.ActiveData.activity_starttime.substring(5,11);    },    ActEnd(){      return this.ActiveData.activity_endtime.substring(5,11);    },    SigStart(){     return this.ActiveData.signup_starttime.substring(5,11);    },    SigEnd(){      return this.ActiveData.signup_endtime.substring(5,11);    },  }

页面如愿显示出想要的效果了,但是也报错了!那是因为data里的数据是在mouted中执行函数才获取到数据,是在computed之后,所以在第一次computed计算时,data中的ActiveData数据还是空的,所以computed找不到ActiveData里的数据。

就会报undefinded接着是Error in render: "TypeError:&hellip;&hellip;"获取到值后重新计算又出现了获取到的值。

Vue中computed计算属性和data数据怎么获取

解决方法一

给要截取的数据赋一个默认值,computed计算属性会先去计算默认值,在获取到新值后重新计算,就不会报undefinded的错误了。

data() {    return {      ActiveData:"",//活动详情所有数据      ActStarts:"",//活动开始时间      ActEnds:"",//活动结束时间      SigStarts:"",//报名开始时间      SigEnds:"",//报名结束时间    }  },  methods:{//获取对应的数据    this.ActiveData = response.data.data;    this.ActStarts = response.data.data.activity_starttime;    this.ActEnds = response.data.data.activity_endtime;    this.SigStarts = response.data.data.signup_starttime    this.SigEnds = response.data.data.signup_endtime}
computed:{    ActStart(){      console.log(this.ActStarts);      return this.ActStarts.substring(5,11);    },    ActEnd(){      return this.ActEnds.substring(5,11);         },    SigStart(){      return this.SigStarts.substring(5,11);    },    SigEnd(){      return this.SigEnds.substring(5,11);    },  }

解决方法二

在computed中增加if判断,在data中的ActiveData里有数据时才在computed中返回对应的数据

data() {   return {     ActiveData:"",//活动详情所有数据  }},methods:{//获取对应的数据    this.ActiveData = response.data.data;}
computed:{    ActStart(){      console.log(this.ActiveData.activity_starttime);      if(this.ActiveData.activity_starttime !== undefined){        return this.ActiveData.activity_starttime.substring(5,11);      }   },   ActEnd(){      if(this.ActiveData.activity_endtime !== undefined){        return this.ActiveData.activity_endtime.substring(5,11);      }   },   SigStart(){      if(this.ActiveData.signup_starttime !== undefined){        return this.ActiveData.signup_starttime.substring(5,11);      }   },   SigEnd(){       if(this.ActiveData.signup_endtime !== undefined){        return this.ActiveData.signup_endtime.substring(5,11);      }   },}

computed计算属性取对象的值,第一次报错undefined

代码如下:

  data() {    return {      limit:3,      checkedIndex:0,      addressList:[],      isMdShow:false,      addressId:""    };  },  components: {    NavHeader,    NavFooter,    NavBread,    Modal  },  mounted(){    this.init()  },    computed:{    addressListFilter(){      return this.addressList.slice(0,this.limit)    },    selectedAddressId(){            // if(this.addressList.length>0){       let data = this.addressList[this.checkedIndex].addressId       console.log(this.addressList,"====")       return data      //  }    }  },

图片:

Vue中computed计算属性和data数据怎么获取

注意,初始化的时候,addressList还是一个空数组,那addressList[index]对象就不存在,肯定就没有addressId这个属性,所以会报undefined

报错和打印值

Vue中computed计算属性和data数据怎么获取

解决方案

那我们现在可以知道,报错的原因是第一次计算的时候,addressList还没有赋值,所以,我们可以进行一个判断,当addressList有值了我们在进行计算

Vue中computed计算属性和data数据怎么获取

关于“Vue中computed计算属性和data数据怎么获取”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯