当我将ngTouch添加到我的使用ngRoute的应用程序时似乎无法正常工作,但是当我删除ngRoute时它工作...我不知道为什么
var app = angular.module('app', ['ngTouch', 'ngRoute']).run(function() {
FastClick.attach(document.body)});
app.config(function($routeProvider){
$routeProvider
.when('/home', {templateUrl: 'partials/home.html'})
.when('/videos', {templateUrl: 'partials/videos.html'})
.when('/recettes', {templateUrl: 'partials/recettes.html'})
.when('/candidats', {templateUrl: 'partials/candidats.html'})
.when('/jury', {templateUrl: 'partials/jury.html'})
.when('/photos', {templateUrl: 'partials/photos.html'})
.when('/quiz', {templateUrl: 'partials/quiz.html'})
.when('/about', {templateUrl: 'partials/about.html'})
.when('/live', {templateUrl: 'partials/live.html'})
.otherwise({redirectTo: '/home'})
});
和我的HTML
<html ng-app="app">
...
<section class="view" ng-view ng-swipe-right="collapse = 0">
...
</section>
...
</html>
ng-swipe-right不能与ngRoute一起使用,但没有它可以工作......