directive只能由小寫字母組成嗎?
.directive('名称', function() {
return {
restrict: 'AE',
template: '<p>Hi there</p>',
replace: true
};
});
例如,
hello ok
helloA not work
Hello not work
hello_a not work
hello-a not work
我的要一個詞組命名怎麼辦?
採用駝峰式命名
如:hello A not work
命名為:helloANotWork
詳細規則:
在html中使用以下方式
但是定義指令時需要這樣