我工作的一個自定義的指令,對於具有基於一個jQuery插件,我寫了一個像器AngularJs工作,which can be seen here定製角指令不能與動態圖像
這裏是我的指令
.directive('imageRotator', function() {
return {
restrict: 'A',
link: function ($scope, $element, $attr) {
console.log('Before Function');
$element.j360();
console.log('After Function');
}
};
});
現在,該指令在我對演示中的一系列圖像進行硬編碼時起作用,但是當我嘗試通過組合和ng-repeat使圖像動態化時,該插件不起作用。我使用動態HTML時閱讀here關於使用$compile
這是這樣的:
<div class="product" image-Rotator>
<img ng-repeat="img in page.imgs" class="child" ng-src="img/{{product.sku}}/{{img}}.png">
</div>
但是當我使用$compile
,我得到的錯誤在我的控制檯:
TypeError: undefined is not a function
at link (http://0.0.0.0:8000/js/controllers.js:48:14)
at nodeLinkFn (http://0.0.0.0:8000/js/angular/angular.js:6220:13)
at compositeLinkFn (http://0.0.0.0:8000/js/angular/angular.js:5630:15)
at compositeLinkFn (http://0.0.0.0:8000/js/angular/angular.js:5633:13)
at publicLinkFn (http://0.0.0.0:8000/js/angular/angular.js:5535:30)
at boundTranscludeFn (http://0.0.0.0:8000/js/angular/angular.js:5649:21)
at controllersBoundTransclude [as $transclude] (http://0.0.0.0:8000/js/angular/angular.js:6241:18)
at ngDirective.link (http://0.0.0.0:8000/js/angular/angular.js:19898:16)
at nodeLinkFn (http://0.0.0.0:8000/js/angular/angular.js:6220:13)
at compositeLinkFn (http://0.0.0.0:8000/js/angular/angular.js:5630:15) <div class="product" image-rotator="">
這也許有點超過我的頭,我有關角度的知識不是很好,所以我不確定什麼是正確的方法來制定指令,特別是動態數據。
我需要做什麼才能使它與動態圖像一起工作的任何想法?任何幫助或想法表示讚賞。
Heres a plunker with the directive.
你可以用你的指令做一個小提琴嗎?這會讓我們更容易幫忙。 – Danny
立即就此工作,一會兒 – mhartington
已經加入了一個胖子 – mhartington