得到“错误:10 $ digest()迭代到达。中止!”错误

时间:2013-11-18 17:32:27

标签: javascript angularjs

所以我收到了这个错误:

Error: 10 $digest() iterations reached. Aborting!

我知道这个函数每次都返回一个随机元素。我如何缓解角度抛出此错误的问题?我知道我可以使用$ watch指令但不确定在这种情况下这对我有什么帮助。

$scope.image = function() {
  var listingImages = [
   "foo",
   "bar",
   "hello",
   "world"
  ]

  return listingImages[Math.floor(Math.random()*listingImages.length)];
}

0 个答案:

没有答案