Vue 在過濾器filter中調用methods中的方法


解決方法:

1、定義一個變量:

2、在beforeCreate生命周期將this賦值給that,通過that獲得

var vm = new Vue({
    el: '#app',
    data: {

    },
    beforeCreate: function () { that = this },
    methods:{
      fom(fmt){
        ...
      }
    },
    ....,
    filters: {
              dateformate: function (val) {
                  return that.fom("yyyy-MM-dd")
              }
          }
    })

 

過濾器學習筆記: https://www.cnblogs.com/meiyanstar/p/14759634.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM