0
スコープの値にアクセスしようとしていますが、定義されていないと表示されています。 JSディレクティブでスコープが定義されていません
angular
.module("myApp",[])
.controller('myCtrl', function($scope){
var model=this;
})
.directive ('ngCero', function($parse){
var linkFunction =function(scope, element, attrs){
element.bind("keypress", function(event) {
if(event.which === 44 || event.which === 13) {
console.log($parse(attrs.format));
}
});
};
return{
restrict : 'A',
}
})