错误类型错误:无法设置未定义的属性“继续”

Dai*_*vas 5 javascript highcharts gitlab

我正在尝试使用 Highcharts Javascript 图表引擎绘制一些图表,我已经设置好了,它在我的本地开发环境中运行良好,但是当我将它部署到 Gitlab 并访问它时,它给了我以下错误:

ERROR TypeError: Cannot set property 'proceed' of undefined
    at t.<computed> (main-es2015.7538dcc357c548058d75.js:1)
    at Object.<anonymous> (main-es2015.7538dcc357c548058d75.js:1)
    at Object.t.<computed> [as arc] (main-es2015.7538dcc357c548058d75.js:1)
    at A.getPlotBandPath (main-es2015.7538dcc357c548058d75.js:1)
    at s.renderBackground (main-es2015.7538dcc357c548058d75.js:1)
    at s.render (main-es2015.7538dcc357c548058d75.js:1)
    at main-es2015.7538dcc357c548058d75.js:1
    at Array.forEach (<anonymous>)
    at t.each (main-es2015.7538dcc357c548058d75.js:1)
    at t.Chart.<anonymous> (main-es2015.7538dcc357c548058d75.js:1)
Run Code Online (Sandbox Code Playgroud)

我试图从我的公共项目中获取我的 Gitlab 提交,以便分析来自特定语言或库的提交数量并将它们放在图表中,以便用户可以看到差异。

我用谷歌搜索了这个错误,我发现了非常相似的错误,但没有一个是我问题的解决方案。我也尝试proceed在我的平台中寻找该属性,但看起来它是 highcharts 在执行时正在运行或调用的东西。

我正在使用它来构建组件:

if (this.data.gitlab) {
      this.seriesData.push({
        name: 'GitLab',
        y: this.data.gitlab,
        color: '#e24329',
        radius: `${radius}%`,
        innerRadius: `${radius - 7}%`
      });
      this.seriesBackgrounds.push({
        outerRadius: `${radius}%`,
        innerRadius: `${radius - 7}%`,
        borderWidth: 0
      });
    }
Run Code Online (Sandbox Code Playgroud)

这是创建图表:

this.skillChart = new Chart(<any>{
      chart: {
        type: 'solidgauge',
        spacing: [0, 0, 0, 0],
        backgroundColor: 'transparent',
        borderColor: 'transparent'
      },
      title: null,
      pane: {
        center: ['50%', '80%'],
        size: '130%',
        startAngle: -90,
        endAngle: 90,
        background: this.seriesBackgrounds
      },
      credits: {
        enabled: false
      },
      yAxis: {
        min: 0,
        max: this.maxScore,
        gridLineWidth: 0,
        lineWidth: 0,
        minorGridLineWidth: 0,
        minorTickWidth: 0,
        tickWidth: 0,
        labels: {
          enabled: false
        }
      },
      tooltip: {
        borderWidth: 0,
        followPointer: true,
        pointFormat: '<span style="color:{point.color}">\u25CF</span> {point.name}: <b>{point.y}</b><br/>',
        shared: true,
        useHTML: true
      },
      series: [
        {
          animation: {
            duration: 1500
          },
          dataLabels: {
            enabled: false
          },
          data: this.seriesData
        }
      ]
    });
Run Code Online (Sandbox Code Playgroud)

当我运行该平台时,我希望看到一个图表,显示一个半圆形条形,其中以 10 为顶部的提交数量,这正是我在本地环境中运行该平台时得到的结果。

但是相反,当我从部署的 Gitlab 平台运行时,我得到了组件,但图表没有绘制半圆。

我没有足够的声誉来发布图像,否则人们会更容易理解我的意思。

Ict*_*tus 4

我也陷入了同样的问题。我的观察:我使用的是 Highcharts JS v6.1.4 (2018-09-25),通过 angular-highcharts 与 NPM 一起安装。

调试代码时,与 highcharts.src.js 片段相关的精简代码会中断:

/**
 * Wrap a method with extended functionality, preserving the original function.
 *
 * @function Highcharts.wrap
 *
 * @param {*} obj
 *        The context object that the method belongs to. In real cases, this is
 *        often a prototype.
 *
 * @param {string} method
 *        The name of the method to extend.
 *
 * @param {Function} func
 *        A wrapper function callback. This function is called with the same
 *        arguments as the original function, except that the original function
 *        is unshifted and passed as the first argument.
 */
H.wrap = function (obj, method, func) {
    var proceed = obj[method];
    obj[method] = function () {
    var args = Array.prototype.slice.call(arguments),
        outerArgs = arguments,
        ctx = this,
        ret;
        ctx.proceed = function () {
            proceed.apply(ctx, arguments.length ? arguments : outerArgs);
        };
        args.unshift(proceed);
        ret = func.apply(this, args);
        ctx.proceed = null;
        return ret;
    };
};
Run Code Online (Sandbox Code Playgroud)

缩小后的代码格式如下:

a.wrap = function(a, h, e) {
    var m = a[h];
    a[h] = function() {
        var a = Array.prototype.slice.call(arguments)
            , p = arguments
            , u = this;
        u.proceed = function() {
            m.apply(u, arguments.length ? arguments : p)
        }
        ;
        a.unshift(m);
        a = e.apply(this, a);
        u.proceed = null;
        return a
    }
}
;
Run Code Online (Sandbox Code Playgroud)

我已经部署在 2 个环境中;在其中一个中,代码可以工作,但在另一个中却不能。在失败的情况下,我进行了调试,并且this在达到分配时未分配变量:u = this因此在下一行中引发错误:u.proceed = function() {

在我的其他环境中,this具有Windowas 值,具有proceed属性,然后一切正常。

到目前为止我还没有弄清楚为什么会发生这种情况。

我希望这能有所帮助。

编辑:升级angular-highcharts8.0.3版本和highcharts版本7.2.0解决了我的问题:)