所以我收到了这个错误:
Error: 10 $digest() iterations reached. Aborting!
我知道这个函数每次都返回一个随机元素。我如何缓解角度抛出此错误的问题?我知道我可以使用$ watch指令但不确定在这种情况下这对我有什么帮助。
$scope.image = function() {
var listingImages = [
"foo",
"bar",
"hello",
"world"
]
return listingImages[Math.floor(Math.random()*listingImages.length)];
}