0
なぜAngularJSにはselectに空のオプションが含まれていますか?私のデフォルト値は空ですか?なぜ私のディレクティブはinitの値を設定できません
link
関数の前に呼び出さ
.directive('gettheme',function(){
return {
restrict:"AE",
template:"<select ng-init='themedata=theme[0]' ng-model='themedata' ng-options='item for item in theme' class='form-control'></select>",
link:function(scope, element, attrs){
scope.theme=['macarons', 'infographic'];
}
}
})