0
.directive('phoneType', [function() {
return {
scope: {
phoneNumber: '=phoneType'
}
link: function (scope, element, attrs) {
// now do stuff with the number, you can access it through the scope
scope.phoneNumber // contains the number
scope.vm.somethingInMyController // vm is undefined
}
};
}])
を親要素の範囲を取得するにはどのようにどのように私はphoneType
と私の指示でvm
変数の両方を達成していますか?角度:ディレクティブで
にconsole.logスコープを試してみてください。$親。 –