我正在查看这个 jsfiddle: http: //jsfiddle.net/carpasse/mcVfK/ 它工作正常,这不是问题,我只想知道如何通过 javascript 进行调试。我尝试使用调试器命令,但在源选项卡中找不到它?知道如何调试吗?
小提琴中的一些代码:
angular.module('app', ['appServices'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/home', {templateUrl: 'home.html', controller: HomeCtrl}).
when('/list', {templateUrl: 'list.html', controller: ListCtrl}).
when('/detail/:itemId', {templateUrl: 'detail.html', controller: DetailCtrl}).
when('/settings', {templateUrl: 'settings.html', controller: SettingsCtrl}).
otherwise({redirectTo: '/home'});
}]);