在同一视图中使用相同的指令并绑定不同的数据 [英] Use same directive in same view and bind different data

查看:148
本文介绍了在同一视图中使用相同的指令并绑定不同的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经创建了一个自定义指令,用于显示使用Highcharts库创建的图表。



现在我想在此指令上构建并在同一视图中创建多个图表。



对于我现有的代码,这是不可能的,如下所示。



如何组织我的代码,以便可以在同一视图中将不同的数据绑定到它?



下面是一些示例代码来说明问题。



指令



<$ p $ function dateChart(){
return {
restrict:'AE',
scope:{
title:'@'
} ,
template:'< div id =chart>< / div>',
link:function(scope,element,attrs){
var chart;

函数createChart(){
图表= new Highcharts.Chart({
图表:{
title:scope.title
});

控制器

  vm.title =我的图表; 

html-template

 < date-chart>< / date-chart> 

< date-chart>< / date-chart>


解决方案

首先,您需要告诉指令数据将会传递

 函数dateChart(){
return {
restrict:'AE',
范围:{
标题:'@'
chartData:'='
},
模板:'< div id =chart>< / div> ',
link:function(scope,element,attrs){
var chart;

函数createChart(){
图表= new Highcharts.Chart({
图表:{
title:scope.title
});

$ / code>

因此,如果您的图表数据位于 $ scope.someData1 $ scope.someData2 你可以像这样传递它:

 < date-chart chart-data =someData1>< / date-chart> 


I have created a custom directive for displaying a charts made with the Highcharts library.

Now I want to build upon this directive and create multiple charts in the same view.

This is not possible with the current code I have, as you can see below.

How can I organize my code so that it's possible to bind different data to it in the same view?

Below is some example code to illustrate the problem.

Directive

 function dateChart() {
  return {
    restrict: 'AE',
    scope: {
      title: '@'
    },
    template: '<div id="chart"></div>',
    link: function(scope, element, attrs) {
      var chart;

      function createChart() {
        chart = new Highcharts.Chart({
          chart: {
          title: scope.title
        });
      }

Controller

vm.title = "My Chart";

html-template

  <date-chart></date-chart>

  <date-chart></date-chart>

解决方案

First you need to tell the directive that data will be passed along

 function dateChart() {
  return {
    restrict: 'AE',
    scope: {
      title: '@'
      chartData: '='
    },
    template: '<div id="chart"></div>',
    link: function(scope, element, attrs) {
      var chart;

      function createChart() {
        chart = new Highcharts.Chart({
          chart: {
          title: scope.title
        });
      }

So if the data for your charts is at $scope.someData1 and $scope.someData2 you can pass it along like this:

<date-chart chart-data="someData1"></date-chart>

<date-chart chart-data="someData2"></date-chart>

这篇关于在同一视图中使用相同的指令并绑定不同的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆