欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

angular如何如何监听对象的值和一次性监听多个值

程序员文章站 2024-03-26 11:45:47
...

监听多个值:

	$scope.$watch('{a: value1, b:value2}', funtion(newValue, oldValue) {
		console.log(newValue.a, newValue.b)
	})

监听对象属性

	$scope.$watch('obj.name', function(newValue, oldValue) {
		console.log(newValue)
	})
相关标签: angular

上一篇: 15_Android性能优化

下一篇: