지시문 내에서 템플릿 사용자 지정 다음과 같이 Bootstrap의 마크 업을 사용하는 양식이 있습니다. Legend text Name Supporting help text 다음과 같이 새로운 지시문 (form-input)으로 줄이고 싶은 많은 상용구 코드가 있습니다. 생성 : Name 저는 간단한 템플릿을 통해이 정도 작업을합니다. angular.module('formComponents', []) .directive('formInput', function() { return { restrict: 'E', scope: { label: 'bind', formId: 'bind' }, template: '' + '{{label}}' + '' + '' + '' + '' } }) 그러나 더 많은 고급 기능을 추가해..