JavaScript Array Object的實際運用

鵬歌歌發表於2019-01-25

手機號碼隱藏中間四位

<p>{{hidePhoneNum}}</p>
複製程式碼
computed: {
  hidePhoneNum() {
    var phoneNum = this.$store.state.base.userInfo.phoneNum; //'18666667017'
    return [phoneNum.substr(0, 3), '****', phoneNum.substr(-4, 4)].join(''); //'186****7017'
  }
},
複製程式碼

相關文章