我正在尝试在 iPad 上测试一个应用程序,我发现 ng-click 在 ipad 纵向模式下不起作用。它在桌面和 ipad 横向模式下按预期工作。
即使在 android 手机上也可以看到相同的行为。在横向模式下工作,但在纵向模式下不工作。
这是我的看法:
<div ng-controller="ModelForecastController as ModelForecast">
<div class="col-xs-12">
<div class="row">
<div class="col-xs-6">
<div class="form-control-static">
<strong>Last Updated:</strong> {{ModelForecast.demand.lastModified}}
</div>
</div>
<div class="col-xs-6 text-right padding-bottom"
ng-hide="ModelForecast.componentStatus.contentReadOnly ||
!ModelForecast.keyGroup.validData || ModelForecast.componentStatus.saveLoading">
<button class="btn btn-default"
ng-click="ModelForecast.resetPage()">Reset</button>
<button class="btn btn-primary"
ng-disabled="form.$invalid"
ng-click="ModelForecast.saveData()">Save</button>
</div>
</div>
</div>
我的控制器:
var ModelForecastController =
function( $log, $scope, $state, $modal, $rootScope,
bandCalculateService, fetchPageDataService,
pageBandRecalculateService, fusionChartsDataService,
modelForecastService, globalConstant,
optionListService, keyGroupService, Utility ) {
var vm = this,
vm.resetPage = function() {
alert('reste Page');
vm.componentStatus = angular.copy( componentFlag );
vm.renderPage();
};
vm.saveData = function() {
alert('save data 2');
var dirtyBasket = {
userGroup: keyGroupService.userGroupSelection.userGrp,
dealer: keyGroupService.locationSelection.loc,
productGroup: keyGroupService.productGroupSelection.id,
model: keyGroupService.modelSelection.id,
demandGroup: []
};
// -- do other stuffs -- //
};
我正在使用角度触摸,当单击 dektop 和 ipad(横向模式)时,类变为 ng-click-active。但是当它处于纵向模式时,类不会变成 ng-click-active。
问题似乎只适用于这个模块,因为其他模块 touch 工作正常。
Angular - 版本 - 1.3.8 Angular-touch 版本 - 1.4.3