本文介绍了角:单程数据绑定不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是推动我疯了。

我有一个日志过滤器。

angular.module('myApp').filter('log', [function() {
  return function(content) {
    console.log(content);
    return content;
  };
}]);

在我的控制器:

$scope.myValue = 'Test';

在我看来:

{{::myValue | log}}

和每次 $消化周期被调用时, myvalue的被loggued 2倍,其中的不该'T ,因为。

And every time the $digest cycle is called, myValue gets loggued 2 times, which shouldn't because of one-way-data-binding.

它已经3小时,我坚持这一点。我一直试图在plunker重现,但没有成功。 (

It has been 3 hours I stuck on this. I have been trying to reproduce in a plunker, without success. :(

推荐答案

由于这个,我发现了几个小时后的罪魁祸首。

Thanks to this SO answer, I found the culprit after few hours.

这是<一个href=\"https://chrome.google.com/webstore/detail/angularjs-batarang/ighdmehidhipcmcojjgiloacoafjmpfk?hl=en\"相对=nofollow>角Batarang ,现在从Chrome中删除永远

It was Angular Batarang, now removed from my Chrome forever.

这篇关于角:单程数据绑定不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 03:10