angular.module("app").
directive("widgetUno", ["$http", function ($http) {
return {
// A whole bunch of crap going on here
},
templateUrl: "widgetUno.html"
};
}]);
...ウィジェットでこのコードドス?
angular.module("app").directive('widgetDos', function($http) {
return function(scope, element, attrs) {
// A whole bunch of crap going on here
};
});
私はウィジェットドスにウィジェット宇野ようなものだディレクティブを変換しようとしているが、私はtemplateUrlどこを参照していますか?これはWidget Dosでも可能ですか?