Angular 自定义指令
指令的定义
module.directive(name, directiveFactory)
@see $compileProvider.directive()
指令的名字
请不要使⽤用ng为指令命名,这样可能会和angular内置指令冲突
如果指令的名字为xxx-yyy 在设置指令的名字时应为xxxYyy 驼峰式声明法
指令定义选项
priority
terminal
scope
controller
controllerAs
require
restrict
template
templateUrl
replace
transclude
compile
link
Last updated