3

コントローラーにアクセスできるように、leaflet ディレクティブを必要とするカスタム ディレクティブがあります。

restrict: 'E',
require: '^leaflet',
scope: {

},
template: "",
link: function(scope, element, attrs, controller) {

}

アプリのコントローラーでカスタム ディレクティブを実装せずに使用すると、ng-repeat正常に動作します。このような:

コントローラの HTML なしng-repeat

<leaflet defaults="defaults" center="center" markers="markers" layers="layers" paths="paths">
  <ng-include src="/markers.html" />
  <my-directive 
    waypoints="wps">
  </my-directive>
</leaflet>

なしのコントローラーのJSng-repeat

$scope.wps = [[32.745,-117.2776],[32.693,-117.3188]];

ただし、追加しようとするng-repeatと、次のエラーが発生します。

Error: [$compile:ctreq] http://errors.angularjs.org/1.3.12/$compile/ctreq?p0=leaflet&p1=myDirective

コントローラーの HTMLng-repeat

    <leaflet defaults="defaults" center="center" markers="markers" layers="layers" paths="paths">
        <ng-include src="/markers.html" />
        <my-directive 
            ng-repeat="(name, data) in routes"
            name="{{ name }}"
            waypoints="data.wps">
        </my-directive>
    </leaflet>

コントローラーのJSng-repeat

$scope.routes = {
  r1: {
    wps: [[32.745,-117.2776],[32.693,-117.3188]]
  }
}

私は何を台無しにしましたか?

4

1 に答える 1

3

あなたは<ng-include src="/markers.html" />あなたの指令の前に持っています。そのタグを明示的に閉じる必要があります。このバグレポートを参照してください。

于 2015-06-23T20:14:16.220 に答える