收藏
回答

使用setInterval,报出了非函数而是对象的异常,如何解决?

    data: function data() {
    return {
      "nowTime""" 
      };
  },
  methods: {
    timeFormatefunction timeFormate() {
      var year = new Date().getFullYear();
      var month = new Date().getMonth() + 1 < 10 ? "0" + (new Date().getMonth() + 1) : new Date().getMonth() + 1;
      var date = new Date().getDate() < 10 ? "0" + new Date().getDate() : new Date().getDate();
      var hh = new Date().getHours() < 10 ? "0" + new Date().getHours() : new Date().getHours();
      var mm = new Date().getMinutes() < 10 ? "0" + new Date().getMinutes() : new Date().getMinutes();
      var ss = new Date().getSeconds() < 10 ? "0" + new Date().getSeconds() : new Date().getSeconds();
      this.nowTime = year + "年" + month + "月" + date + "日" + " " + hh + ":" + mm + ':' + ss;
    },
    nowTimesfunction nowTimes() {
      this.timeFormate();
      setInterval(this.nowTimes, 1000);
      this.clear();
    },
      mountedfunction mounted() {
      this.nowTimes();
    },

这么一段代码,可以正常运行,但是每一次循环都报setInterval expects a function as first argument but got object.;at setInterval callback function的异常,但是我打印this.nowTimes 的类型是function,改如何解决呢?

最后一次编辑于  2020-05-22
回答关注问题邀请回答
收藏

3 个回答

登录 后发表内容
问题标签