AngularJS中的lightGallery(jQuery插件)

我正在尝试使用lightGallery jQuery插件( http://sachinchoolur.github.io/lightGallery/index.html )与AngularJS一起使用。

我发现一些答案表明我需要一个指令,所以我创建了以下内容:

.directive('lightGallery', function() { return { restrict: 'A', link: function(scope, element, attrs) { jQuery(element).lightGallery(); } }; }) 

然后在我看来我这样做:

 

(我也试过