angularjs 教程6

Enough of building an app with three phones in a hard-coded dataset! Let's fetch a larger dataset from our server using one of Angular's built-inservices called$http. We will use Angular'sdependency injection (DI) to provide the service to thePhoneListCtrl controller.

  1. Reset the workspace to step 5.

    git checkout -f step-5
  2. Refresh your browser or check the app out on Angular's server.

  1. Reset the workspace to step 5.

    git checkout -f step-5
  2. Refresh your browser or check the app out on Angular's server.

You should now see a list of 20 phones.

The most important changes are listed below. You can see the full diff on GitHub:

Data

The app/phones/phones.json file in your project is a dataset that contains a larger list of phones stored in the JSON format.

Following is a sample of the file:

 
 
  1. [
  2. {
  3. "age": 13,
  4. "id": "motorola-defy-with-motoblur",
  5. "name": "Motorola DEFY\u2122 with MOTOBLUR\u2122",
  6. "snippet": "Are you ready for everything life throws your way?"
  7. ...
  8. },
  9. ...
  10. ]

Controller

We'll use Angular's $http service in our controller to make an HTTP request to your web server to fetch the data in theapp/phones/phones.json file. $http is just one of several built-inangular services that handle common operations in web apps. Angular injects these services for you where you need them.

Services are managed by Angular's DI subsystem. Dependency injection helps to make your web apps both well-structured (e.g., separate components for presentation, data, and control) and loosely coupled (dependencies between components are not resolved by the components themselves, but by the DI subsystem).

app/js/controllers.js:

 
 
  1. var phonecatApp = angular.module('phonecatApp', []);
  2.  
  3. phonecatApp.controller('PhoneListCtrl', function ($scope, $http) {
  4. $http.get('phones/phones.json').success(function(data) {
  5. $scope.phones = data;
  6. });
  7.  
  8. $scope.orderProp = 'age';
  9. });

$http makes an HTTP GET request to our web server, asking for phone/phones.json (the url is relative to our index.html file). The server responds by providing the data in the json file. (The response might just as well have been dynamically generated by a backend server. To the browser and our app they both look the same. For the sake of simplicity we used a json file in this tutorial.)

The $http service returns a promise object with a success method. We call this method to handle the asynchronous response and assign the phone data to the scope controlled by this controller, as a model calledphones. Notice that angular detected the json response and parsed it for us!

To use a service in angular, you simply declare the names of the dependencies you need as arguments to the controller's constructor function, as follows:

phonecatApp.controller('PhoneListCtrl', function ($scope, $http) {...}

Angular's dependency injector provides services to your controller when the controller is being constructed. The dependency injector also takes care of creating any transitive dependencies the service may have (services often depend upon other services).

Note that the names of arguments are significant, because the injector uses these to look up the dependencies.

$ Prefix Naming Convention

You can create your own services, and in fact we will do exactly that in step 11. As a naming convention, angular's built-in services, Scope methods and a few other Angular APIs have a$ prefix in front of the name.

The $ prefix is there to namespace Angular-provided services. To prevent collisions it's best to avoid naming your services and models anything that begins with a$.

If you inspect a Scope, you may also notice some properties that begin with $$. These properties are considered private, and should not be accessed or modified.

A Note on Minification

Since Angular infers the controller's dependencies from the names of arguments to the controller's constructor function, if you were tominify the JavaScript code for PhoneListCtrl controller, all of its function arguments would be minified as well, and the dependency injector would not be able to identify services correctly.

There are two ways to overcome issues caused by minification:

  • You can create a $inject property on the controller function which holds an array of strings. Each string in the array is the name of the service to inject for the corresponding parameter. In the case of our example we would write:
       
       
    1. function PhoneListCtrl($scope, $http) {...}
    2. PhoneListCtrl.$inject = ['$scope', '$http'];
    3. phonecatApp.controller('PhoneListCtrl', PhoneListCtrl);
  • Use the inline bracket notation which wraps the function to be injected into an array of strings (representing the dependency names) followed by the function to be injected:
       
       
    1. function PhoneListCtrl($scope, $http) {...}
    2. phonecatApp.controller('PhoneListCtrl', ['$scope', '$http', PhoneListCtrl]);
    Both of these methods work with any function that can be injected by Angular, so it's up to your project's style guide to decide which one you use.

When using the second method, it is common to provide the constructor function inline as an anonymous function when registering the controller:

 
 
  1. phonecatApp.controller('PhoneListCtrl', ['$scope', '$http', function($scope, $http) {...}]);

From this point onward, we're going to use the inline method in the tutorial. With that in mind, let's add the annotations to ourPhoneListCtrl:

app/js/controllers.js:

 
 
  1. var phonecatApp = angular.module('phonecatApp', []);
  2.  
  3. phonecatApp.controller('PhoneListCtrl', ['$scope', '$http',
  4. function ($scope, $http) {
  5. $http.get('phones/phones.json').success(function(data) {
  6. $scope.phones = data;
  7. });
  8.  
  9. $scope.orderProp = 'age';
  10. }]);

Test

test/unit/controllersSpec.js:

Because we started using dependency injection and our controller has dependencies, constructing the controller in our tests is a bit more complicated. We could use thenew operator and provide the constructor with some kind of fake $http implementation. However, the recommended (and easier) way is to create a controller in the test environment in the same way that angular does it in the production code behind the scenes, as follows:

 
 
  1. describe('PhoneCat controllers', function() {
  2.  
  3. describe('PhoneListCtrl', function(){
  4. var scope, ctrl, $httpBackend;
  5.  
  6. // The injector ignores leading and trailing underscores here (i.e. _$httpBackend_).
  7. // This allows us to inject a service but then attach it to a variable
  8. // with the same name as the service.
  9. beforeEach(inject(function(_$httpBackend_, $rootScope, $controller) {
  10. $httpBackend = _$httpBackend_;
  11. $httpBackend.expectGET('phones/phones.json').
  12. respond([{name: 'Nexus S'}, {name: 'Motorola DROID'}]);
  13.  
  14. scope = $rootScope.$new();
  15. ctrl = $controller('PhoneListCtrl', {$scope: scope});
  16. }));

Note: Because we loaded Jasmine and angular-mocks.js in our test environment, we got two helper methodsmodule andinject that we'll use to access and configure the injector.

We created the controller in the test environment, as follows:

  • We used the inject helper method to inject instances of $rootScope, $controller and $httpBackend services into the Jasmine's beforeEach function. These instances come from an injector which is recreated from scratch for every single test. This guarantees that each test starts from a well known starting point and each test is isolated from the work done in other tests.

  • We created a new scope for our controller by calling $rootScope.$new()

  • We called the injected $controller function passing the name of thePhoneListCtrl controller and the created scope as parameters.

Because our code now uses the $http service to fetch the phone list data in our controller, before we create thePhoneListCtrl child scope, we need to tell the testing harness to expect an incoming request from the controller. To do this we:

  • Request $httpBackend service to be injected into our beforeEach function. This is a mock version of the service that in a production environment facilitates all XHR and JSONP requests. The mock version of this service allows you to write tests without having to deal with native APIs and the global state associated with them — both of which make testing a nightmare.

  • Use the $httpBackend.expectGET method to train the $httpBackend service to expect an incoming HTTP request and tell it what to respond with. Note that the responses are not returned until we call the$httpBackend.flush method.

Now we will make assertions to verify that the phones model doesn't exist onscope before the response is received:

 
 
  1. it('should create "phones" model with 2 phones fetched from xhr', function() {
  2. expect(scope.phones).toBeUndefined();
  3. $httpBackend.flush();
  4.  
  5. expect(scope.phones).toEqual([{name: 'Nexus S'},
  6. {name: 'Motorola DROID'}]);
  7. });
  • We flush the request queue in the browser by calling $httpBackend.flush(). This causes the promise returned by the$http service to be resolved with the trained response.

  • We make the assertions, verifying that the phone model now exists on the scope.

Finally, we verify that the default value of orderProp is set correctly:

 
 
  1. it('should set the default value of orderProp model', function() {
  2. expect(scope.orderProp).toBe('age');
  3. });

You should now see the following output in the Karma tab:

   Chrome 22.0: Executed 2 of 2 SUCCESS (0.028 secs / 0.007 secs)

Experiments

  • At the bottom of index.html, add a {{phones | json}} binding to see the list of phones displayed in json format.

  • In the PhoneListCtrl controller, pre-process the http response by limiting the number of phones to the first 5 in the list. Use the following code in the$http callback:

       $scope.phones = data.splice(0, 5);

Summary

Now that you have learned how easy it is to use angular services (thanks to Angular's dependency injection), go tostep 6, where you will add some thumbnail images of phones and some links.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值