有几个疑惑
'use strict';
foodMeApp.controller('RestaurantsController', function RestaurantsController(
$scope, customer, $location, Restaurant) {
console.log($scope); //not working
console.log(customer); //not working
console.log($location); //not working
console.log(Restaurant); //not working
if (!customer.address) {
$location.url('/customer');
}
...
...
});
首先我想知道,为什么没有console.log工作。
2 。我在chrome中有 batarang 扩展名,但对我来说看起来很麻烦。因为我是angularjs的新手。那么你们可以告诉我一些调试代码的技巧和窍门。