我只是在学习 AngularJS,我正在寻找许多不同的方法来做同样的事情,我真的想知道哪个更好,为什么要选择一个选项而不是另一个选项。
我已经看到控制器以两种方式创建:
app.controller('CustomersController', function ($scope, customersService) {});
和
app.controller('CustomersController', ['$scope', 'customersService', function ($scope, customersService) {}]);
显然第二种方式是更多的打字,但是使用这种方式比第一种方式有好处吗?