- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在使用 ng-class
时遇到了一些奇怪的问题,我怀疑它与竞争条件有关。
这是 plunker example
这里是相关的js代码
self.slideLeft = function() {
if (self.end_index < self.list_of_stuff.length) {
self.direction = 'left';
debugger;
self.start_index = self.start_index + 4;
self.end_index = self.end_index + 4;
self.display_list = self.list_of_stuff.slice(self.start_index, self.end_index);
}
}
self.slideRight = function() {
if (self.start_index > 0) {
self.direction = 'right';
debugger;
self.start_index = self.start_index - 4;
self.end_index = self.end_index - 4;
self.display_list = self.list_of_stuff.slice(self.start_index, self.end_index);
}
}
这是相关的html
<div class="stuff-wrapper">
<div class="stuff"
ng-class="bCtrl.directionClass()"
ng-repeat="stuff in bCtrl.display_list">
{{stuff}}
</div>
</div>
这是动画。
.left.ng-enter,
.left.ng-leave {
-webkit-transition: all 1s ease-in-out;
}
.left.ng-enter {
transition-delay: 0.7s;
opacity: 0;
left: 10%;
}
.left.ng-enter-active {
opacity: 1;
left: 0;
}
.left.ng-leave {
opacity: 1;
left: -10%;
}
.left.ng-leave-active {
left: -20%;
opacity: 0;
}
这是一个左右滑动数字列表的简单应用。
如果按下左键,数字会向左滑动。
如果按下右键,数字会向右滑动。
但是我们看到,如果有方向的变化,数字会先滑错方向,后面的方向才是正确的。
我怀疑这是由于竞争条件造成的。
事实上,我看到 ng-class
在我使用调试器更改方向 self.direction
后没有立即应用。
这很好奇。
有没有办法解决这个问题?
最佳答案
引用这个(https://stackoverflow.com/a/21664152/2402929)问题的答案:
You need to make the changes to the $scope.elements after the css class is updated at the DOM. So you need to delay the DOM manipulation for one digest loop. This can be done by the $timeout service (please see this answer for more information AngularJS $evalAsync vs $timeout):
在您更新 CSS 类时,您的元素将在同一个摘要循环中被删除。意思是 - CSS 没有得到更新,元素只是被删除。
摘要循环将包含您的整个 ng-click 函数,因为对于所有 Angular 内置指令,代码都包含在 $scope.$apply 调用中。
澄清一下:
$scope.$apply() takes a function or an Angular expression string, and executes it, then calls $scope.$digest() to update any bindings or watchers.
您可以在此处阅读更多相关信息 (http://jimhoskins.com/2012/12/17/angularjs-and-apply.html)。
因此,解决您的问题的方法是将数组中的数据删除包装到一个 $timeout block 中,这将延迟一个摘要循环的 DOM 操作并将类的更改和数据的删除分开:
self.slideLeft = function() {
if (self.end_index < self.list_of_stuff.length) {
self.direction = 'left';
self.start_index = self.start_index + 4;
self.end_index = self.end_index + 4;
$timeout(function(){
self.display_list = self.list_of_stuff.slice(self.start_index, self.end_index);
});
}
}
self.slideRight = function() {
if (self.start_index > 0) {
self.direction = 'right';
self.start_index = self.start_index - 4;
self.end_index = self.end_index - 4;
$timeout(function(){
self.display_list = self.list_of_stuff.slice(self.start_index, self.end_index);
});
}
}
这是一个有效的 plunker: http://plnkr.co/edit/30wJhL?p=preview
关于javascript - ng-class 和动画的竞争条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37736912/
假设我正在使用 APC,其中过程和调用代码都使用 SetLastError 和 GetLastError。这会导致 GetLastError 产生不可预测的值。有什么办法可以解决这个问题吗? VOID
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 7年前关闭。 Improve t
任何人都可以,请告诉我,如何在不进行JavaScript轮询/ setInterval的情况下,在完整日历上填充/显示在服务器端动态更新的数据。 grails中提供了Atmosphere插件,但是文档
我正在尝试调整我的代码,从仅在前台使用 WCSessionDelegate 回调到在后台通过 handleBackgroundTasks: 接受 WKWatchConnectivityRefreshB
我正在构建批处理系统。 单位 的批处理数量从 20 到 1000 不等。每个 Unit 本质上都是模型的层次结构(一个主模型和许多子模型)。我的任务涉及将每个模型层次结构作为单个事务保存到数据库中(每
我拍了一张图片并将其切成三 block ,然后将它们向右浮动,让文字围绕它们流动。 HTML 看起来像这样: 在我添加侧边栏并将其 float 到图像的右上方之前,它工作正常,就像这样... T
我正在考虑嵌入式 Linux 项目(还没有硬件)中即将出现的情况,其中两个外部芯片需要共享一条物理 IRQ 线。这条线在硬件中能够实现边沿触发,但不能实现电平触发中断。 查看 Linux 中的共享 i
我观察到,当 linux futexes 发生争用时,系统会在自旋锁上花费大量时间。我注意到即使不直接使用 futex 也是一个问题,但在调用 malloc/free、rand、glib 互斥调用和其
我终于能够获得一些工具提示,最终可以使用以下代码: Hover over me 然后 $('[rel=tooltip]').tooltip(); 我遇到的问题是它使用 jQueryUI 工
我是一名优秀的程序员,十分优秀!