jQueryプラグインを自分の角度のアプリに統合する正しい方法は何だろうと思っていました。チュートリアルとスクリーンキャストをいくつか見つけましたが、特定のプラグインに対応しているようです。
例:http : //amitgharat.wordpress.com/2013/02/03/an-approach-to-use-jquery-plugins-with-angularjs/ http://www.youtube.com/watch?v=8ozyXwLzFYs
そのようなディレクティブを作成する必要があります-
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));
引用符なし。