作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以在 angularJS 中观看日期?我有一个包含日期的 ng-model,我想观看它,所以当它的月份、年份或日期发生变化时,我会收到通知。
scope.$watch('ngModel',function(newVal){
console.log(newVal);
},true);
我有一个 Controller ,我在其中为指令提供了一个日期对象。现在我想看那个日期对象。
module.directive('Datepicker',function(){
return {
restrict:'E',
scope:{
ngModel:"="
},
link: function(scope, element, attrs) {
//..other code here
scope.$watch('ngModel', function(newVal) {
console.log(ngModel);
}, true);
}
}
});
最佳答案
我相信你在指令中,那么你应该使用 attrs.ngModel
而不是 ngModel
,它应该在指令的链接/编译函数中
代码
app.directive('myDirective', function() {
return {
'restrict': 'E',
scope: { ngModel: '='},
link: function(scope, element, attrs, ngModel) {
//..other code here
scope.$watch('$parent.'+ attrs.ngModel, function(newVal) {
console.log(newVal);
}, true);
}
};
});
关于javascript - 如何在 angularJS 中查看日期对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29751161/
我是一名优秀的程序员,十分优秀!