मैं सोच रहा था कि मेरे कोणीय ऐप में jQuery प्लग इन को एकीकृत करने का सही तरीका क्या है। मुझे कई ट्यूटोरियल और स्क्रीन-कास्ट मिले हैं, लेकिन वे एक विशिष्ट प्लगइन के लिए तैयार हैं।
उदाहरण के लिए: http://amitgharat.wordpress.com/2013/02/03/an-approach-to-use-jquery-plugins-with-angularjs/ http://www.youtube.com/watch?v=8ozyXwxzFYs
क्या मुझे ऐसा निर्देश बनाना चाहिए -
App.directive('directiveName', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
$(element).'pluginActivationFunction'(scope.$eval(attrs.directiveName));
}
};
});
और फिर HTML में स्क्रिप्ट और निर्देश को कॉल करें?
<div directiveName ></div>
<script type="text/javascript" src="pluginName.js"></script>
आगे धन्यवाद
$(element).pluginActivationFunction(scope.$eval(attrs.directiveName));
उद्धरण के बिना होना चाहिए ।