Angular ui-sortable无法在移动设备上运行

时间:2016-09-22 12:32:43

标签: javascript jquery angularjs jquery-ui angular-ui-sortable

我目前正在开发一个包含一些测试的AngularJS应用。在其中一些我有一个列表,用户必须通过拖放正确订购。

我正在使用angular-ui-sortable来实现这一目标。在PC和笔记本电脑上它完美运行。当用户在移动设备上时,问题就会到来,然后它就会停止工作。

我可以想象它与手机上的垂直滚动冲突,或者我完全错了?有没有人遇到过这个问题,并提出了解决方案?或者可能会指出我正确的方向,我真的很感激。

HTML (如果需要我的html)

<ul ui-sortable ng-model="sequence" class="list-group list-group-lg list-group-sp">
    <li ng-repeat="choice in choices" class="list-group-item" draggable="true">
        <h5>{{choice.name}}</h5>
    </li>
</ul>

1 个答案:

答案 0 :(得分:0)

根据文档以及在github存储库上打开的问题,您可以添加jquery-ui来解决此问题。您可以从项目自述文件中查看此pen,以供参考。

这是在笔上使用的代码:

HTML

 <div class="floatleft">
    <ul ui-sortable="sortableOptions" ng-model="list" class="list">
      <li ng-repeat="item in list" class="item">
        {{item.text}}
      </li>
    </ul>
  </div>

控制器

  $scope.sortableOptions = {
    update: function(e, ui) {
      var logEntry = tmpList.map(function(i){
        return i.value;
      }).join(', ');
      $scope.sortingLog.push('Update: ' + logEntry);
    },
    stop: function(e, ui) {
      // this callback has the changed model
      var logEntry = tmpList.map(function(i){
        return i.value;
      }).join(', ');
      $scope.sortingLog.push('Stop: ' + logEntry);
    }
  };