我创造了一个
widget in an external assembly
并希望在其他小部件中使用它的一部分。虽然我已经在程序集之间实现了model/viewmodel,但是我想抽象设计器视图,以便轻松地将其作为其他小部件的一部分使用,这样我就不会复制粘贴每个小部件的js/html。
这是我的designerview-simple.js中现有的javascript:
simpleViewModule.controller('SimpleCtrl', ['$scope', 'propertyService', function ($scope, propertyService) {
$scope.feedback.showLoadingIndicator = true;
propertyService.get().then(function(data){
//Stuff happens here
});
}]);