ฉันกำลังดู jsfiddle นี้: http://jsfiddle.net/carpasse/mcVfK/ มันใช้งานได้ดีนั่นไม่ใช่ปัญหาฉันแค่อยากรู้วิธีการดีบักผ่านจาวาสคริปต์ ฉันพยายามใช้คำสั่งดีบักเกอร์ แต่หาไม่พบในแท็บแหล่งที่มา? มีความคิดอย่างไรที่ฉันจะแก้ไขข้อบกพร่องนี้ได้
รหัสบางส่วนจากซอ:
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'});
}]);
debugger;
ลงในโค้ด Chrome และ Firefox จะเปิดตัวแก้ไขข้อบกพร่องแบบ step-through โดยอัตโนมัติ! (ฉันคัดลอกเคล็ดลับนี้จากคำตอบของ @ user3335908 เพื่อให้โดดเด่นยิ่งขึ้น)