如何从Angular 4中的NVD3回调中导航组件?

时间:2018-09-09 15:57:24

标签: javascript angular nvd3.js angular4-router

我已经在Angular 4中实现了NVD3图表。在回调函数中编写了一个on Click事件,单击该图表时,我试图导航到另一个组件,但无法导航。

代码:

import { Router} from '@angular/router';
export class MyNewComponentComponent implements OnInit {
constructor(public router: Router)
  {

  }
 this.options = {
    chart: {
      type: 'discreteBarChart',
      height: 450,
      margin : {
        top: 20,
        right: 20,
        bottom: 50,
        left: 55
      },

      x: function(d){return d.label;},
      y: function(d){return d.value;},
      showValues: true,
      valueFormat: function(d){
        return d3.format(',.4f')(d);
      },
      duration: 500,
      xAxis: {
        axisLabel: 'X Axis'
      },
      yAxis: {
        axisLabel: 'Y Axis',
        axisLabelDistance: -10
      },
      callback: function(chart){ 
        chart.discretebar.dispatch.on('elementClick', (angularEvent,e) => {
             console.log("Inside click"); 
                            this.router.navigate(["/app-new-component2"]); 


        });

      }

    }
  }

}

我在控制台中收到此错误。找不到要重定向的组件引用。 enter image description here

等待建议。在此先感谢..

1 个答案:

答案 0 :(得分:7)

所以您的问题就在这里

  callback: function(chart){ // note the callback function
    chart.discretebar.dispatch.on('elementClick', (angularEvent,e) => {
         console.log("Inside click"); 
         this.router.navigate(["/app-new-component2"]); 
    });

  }

因此,在回调函数所在的位置,您使用的是es5 function(),这意味着该函数中的所有内容都不会保存全局范围this,而是创建一个新范围。因此,在这种情况下,当您执行this.router.navigate时,您将不引用组件(全局this),而您将引用的是没有this的函数范围router。所以你要做的就是这个,

  callback: (chart) => { 
    chart.discretebar.dispatch.on('elementClick', (angularEvent,e) => {
         console.log("Inside click"); 
         this.router.navigate(["/app-new-component2"]); 
    });

  }

使用ES6(胖箭头)功能() => {}将保留全局范围this,这将使您可以使用路由器。