我滑动时不会触发slideChangeStart事件

时间:2016-09-16 15:54:15

标签: ionic-framework swiper ion-slides

在我的Ionic 1.3.1应用程序中,我使用ion-slides组件显示问卷的各个部分:

<ion-slides options="vm.options" slider="data.slider">
        <ion-slide-page ng-repeat="s in ::vm.sections">
            <div class="bar bar-header bar-positive">
                <button class="button button-small button-icon icon ion-chevron-left"
                        ng-click="vm.previous()"
                        ng-show="::$index !== 0"></button>
                <h1 class="title">{{::s.text}}</h1>
                <button class="button button-small button-icon icon ion-chevron-right"
                        ng-click="vm.next()"
                        ng-show="::($index + 1) < vm.sections.length"></button>
            </div>
            <ion-content class="has-header">
               <div ng-if="s.include" ng-show="s.show">
                  <!--My content-->
               </div>
            </ion-content>
        </ion-slide-page>
    </ion-slides>

在我的控制器中,我会收听slideChangeStart:

    $scope.$on("$ionicSlides.slideChangeStart", function (event, data) {
        alert('slideChangeStart');
        vm.activeIndex = slider.activeIndex;
        vm.propertySurvey.CurrentSectionIndex = vm.activeIndex;

        //include is used on an ng-if so elements are removed from the dom
        //and the number of watchers is reduced
        //also, the slider displays the contents of the 
        //previous slide unless they are explicitly hidden
        vm.sections[slider.previousIndex].include = false;
        vm.sections[slider.previousIndex].show = false;

        initialiseQuestions(vm.activeIndex);
    });

当我点击上一个和下一个按钮,即slider.slidePrev()slider.slideNext()时,slideChangeStart事件会触发 - 我会看到警报。但是,如果我使用手势滑动页面 - 标题会按照我的预期更改,但事件不会触发。我已经尝试在我的选项中关闭滑动但没有成功(不是我首选的解决方案):

vm.options = {
   noSwiping: true,
   effect: 'fade'
}

更新 我尝试使用slideChangeEnd,但该事件也未触发。 因此,我将所有代码移动到我使用gotoSlide(index)nextprevious方法调用的单pagerClick方法中 - 这样我就不会依赖于离子滑动事件。 我将Ionic on-swipe指令添加到我的ion-slide-page组件中,看看它们是否可以工作:

<ion-slide-page ng-repeat="s in ::vm.sections" 
                on-swipe-left="vm.next()" 
                on-swipe-right="vm.previous()">

这使得滑动工作在Ripple模拟器中(之前它根本不工作),但它仍然无法在我的任何Android设备上工作。再次,刷卡事件似乎不会发生。

我正在使用Crosswalk插件

2 个答案:

答案 0 :(得分:0)

如果删除effect选项,问题就会消失。所以这有效:

vm.options = {
   noSwiping: false,
   speed: 300
}

而且,既然这些都是默认值,我最终完全删除了选项对象。

用'幻灯片'替换“淡入淡出”的NB不起作用

参考: http://ionicframework.com/docs/api/directive/ionSlides/

答案 1 :(得分:0)

我遇到了类似的问题,上面的答案对我不起作用,所以我想我分享的是: 根据{{​​3}}(它是离子幻灯片的基础),您可以直接向窗口小部件添加基于事件的回调。

以下对我有用(假设scope.slider对象...)

//the 'slideChangeStart' event has a slider argument in its callback
scope.slider.on('slideChangeStart', function(slider) {
  //do stuff - maybe you want to store the activeIndex
  scope.indexIReallyCareAbout = slider.activeIndex;
});

Swiper API提供了一个可以在&#39; on&#39;中命名的事件列表。标题回调

下的回调函数