未捕获的TypeError:this._isDateType不是Arrow函数内的函数&Quot;(&Q;)

quot;Uncaught TypeError: this._isDateType is not a functionquot; within Arrow Function(未捕获的TypeError:this._isDateType不是Arrow函数内的函数Quot;(Q;))
本文介绍了未捕获的TypeError:this._isDateType不是Arrow函数内的函数&Quot;(&Q;)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我每次都会收到找不到函数定义的类型错误。代码如下所示:
return BaseController.extend("ch.micarna.weightprotocol.controller.Calendar", {
  onInit: function () {
    console.log(this._isDateType(new Date()));
    let oHbox = this.byId("calendar-container");
    let oTodayDate = new Date();
    let oEndDate = this._getLastDayOfMonth(oTodayDate);
  },

  _getLastDayOfMonth: (oBegin) => {
    if (this._isDateType(oBegin)) {
      throw new TypeError("The given parameter is not type of date.");
    }
    return new Date(oBegin.getFullYear(), oBegin.getMonth() + 1, 0);
  },

  _isDateType: (oDate) => {
    return Object.prototype.toString.call(oDate) === "[object Date]";
  },

});

问题在于_isDateType函数在_getLastDayOfMonth函数内调用时找不到它。 我设置了断点:

如您所见,该函数未定义,我不知道原因。

onInit函数的开头,我调用了_isDateType函数:

console.log(this._isDateType(new Date()));

,并提供了预期的结果。

我做错了什么?

推荐答案

替换箭头函数

_getLastDayOfMonth: (oBegin) => {
  // this....
},

正常function expression:

_getLastDayOfMonth: function(oBegin) {
  // this...
},

这样_getLastDayOfMonth可以自由访问Controller实例内的其他方法。

为什么它不能与箭头函数配合使用

  • 首先,重要的是要知道箭头函数在词法上绑定它们的上下文

    箭头函数表达式的语法比函数表达式短,没有自己的this[source]

    例如,不可能在箭头函数上调用.bind。它们在评估时从闭包中获取this

  • 由于this不是控制器的实例,而是调用BaseController.extend时的window对象,因此在箭头函数内部调用this._isDateType等同于window._isDateType

这篇关于未捕获的TypeError:this._isDateType不是Arrow函数内的函数&Quot;(&Q;)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)