Home Web Front-end JS Tutorial AngularJS Getting Started Tutorial (2): AngularJS Template_AngularJS

AngularJS Getting Started Tutorial (2): AngularJS Template_AngularJS

May 16, 2016 pm 04:28 PM
angularjs Getting Started Tutorial

It’s time to give these web pages some dynamic features - use AngularJS! We have added a test here for the controller that will be added later.

There are many types of code structures for an application. For AngularJS applications, we encourage the use of the Model-View-Controller (MVC) pattern to decouple code and separate concerns. With this in mind, we use AngularJS to add some models, views, and controllers to our application.

Please reset the working directory:

Copy code The code is as follows:

git checkout -f step-2

Our app now has a list of three phones.

The most important differences between step 1 and step 2 are listed below. You can go to GitHub to see the complete differences.

Views and Templates

In AngularJS, a view is a mapping of a model rendered through an HTML template. This means that whenever the model changes, AngularJS will update the join point in real time and update the view accordingly.

For example, view components are built by AngularJS using the following template:

Copy code The code is as follows:



...





  • {{phone.name}}

    {{phone.snippet}}






We just replaced the statically encoded phone list, because here we use the ngRepeat directive and two AngularJS expressions wrapped in curly braces - {{phone.name}} and {{phone.snippet}} ——can achieve the same effect.

1. The ng-repeat="phone in phones" statement in the

  • tag is an AngularJS iterator. This iterator tells AngularJS to create a
  • element for each phone in the list, using the first
  • tag as a template.

    2. As we learned in step 0, the curly braces surrounding phone.name and phone.snippet identify data binding. Different from constant calculation, the expression here is actually a data model reference of our application, which we have set in the PhoneListCtrl controller.

    Models and Controllers

    The data model is initialized in the PhoneListCtrl controller (this is just a function containing an array, and the object stored in the array is the mobile phone data list):

    app/js/controller.js:

    Copy code The code is as follows:

    function PhoneListCtrl($scope) {
    $scope.phones = [
    {"name": "Nexus S",
    "snippet": "Fast just got faster with Nexus S."},
    {"name": "Motorola XOOM™ with Wi-Fi",
    "snippet": "The Next, Next Generation tablet."},
    {"name": "MOTOROLA XOOM™",
    "snippet": "The Next, Next Generation tablet."}
    ];
    }

    Although the controller does not seem to play a controlling role, it plays a vital role here. Controllers allow us to establish data bindings between models and views by giving them the context of our data model. This is how we connect the presentation layer, data and logical components:

    1.PhoneListCtrl - The name of the controller method (in the JS file controllers.js) matches the value of the ngController directive in the tag.

    2. The phone’s data is now associated with the scope ($scope) injected into our controller function. When the application starts, a root scope is created, and the controller scope is a typical successor of the root scope. The scope of this controller is valid for all data bindings inside the tag.

    The scope theory of AngularJS is very important: a scope can be regarded as a gluer for templates, models and controllers to work together. AngularJS uses scopes, along with information in templates, data models and controllers. These can help separate the model and view, but the two are really in sync! Any changes to the model are immediately reflected in the view; any changes to the view are immediately reflected in the model.

    For a more in-depth understanding of AngularJS scope, please refer to the AngularJS Scope Document.

    Test

    The "AngularJS way" makes code testing during development very simple. Let’s take a look at the following newly added unit test for the controller:

    test/unit/controllersSpec.js:

    Copy code The code is as follows:

    describe('PhoneCat controllers', function() {

    describe('PhoneListCtrl', function(){

    it('should create "phones" model with 3 phones', function() {
    var scope = {},
    ctrl = new PhoneListCtrl(scope);

    expect(scope.phones.length).toBe(3);
    });
    });
    });

    This test verifies that there are three records in our mobile phone array (no need to figure out this test script yet). This example shows how easy it is to create a unit test for AngularJS code. Because testing is an essential part of software development, we make it easy to build tests in AngularJS to encourage developers to write more of them.

    When writing tests, AngularJS developers tend to use the syntax in the Jasmine Behavior-Driven Development (BBD) framework. Although AngularJS does not force you to use Jasmine, all of our tests in the tutorial are written using Jasmine. You can get relevant knowledge on Jasmine's official homepage or Jasmine Wiki.

    AngularJS based projects are pre-configured to use the JsTestDriver to run unit tests.

    You can run the test like this:

    1. On a separate terminal, enter the angular-phonecat directory and run ./scripts/test-server.sh to start the test (please enter .scriptstest-server.bat on the Windows command line to run the script, followed by The script command runs in a similar way);
    2. Open a new browser window and go to http://localhost:9876;
    3. Select "Capture this browser in strict mode".

    At this time, you can put aside your window and forget about it. JsTestDriver will run the test by itself and output the results in your terminal.

    4. Run ./scripts/test.sh to test.

    You should see results similar to the following:

    Copy code The code is as follows:

    Chrome: Runner reset.
    .
    Total 1 tests (Passed: 1; Fails: 0; Errors: 0) (2.00 ms)
    Chrome 19.0.1084.36 Mac OS: Run 1 tests (Passed: 1; Fails: 0; Errors 0) (2.00 ms)

    yeah! Test passed! Or not... Note: If an error occurs after you run the test, close the browser and go back to the terminal to close the script, then try the above steps again.

    Practice

    Add another data binding for index.html. For example:

    Copy code The code is as follows:

    Total number of phones: {{phones.length}}



    Create a new data model property and bind it to the template. For example:
    Copy code The code is as follows:

    $scope.hello = "Hello, World!"

    Update your browser to make sure it says "Hello, World!"

    Create a simple table with an iterator:

    Copy code The code is as follows:




    row number
    {{i}}


    Now let i increment the data model expression by 1:
    Copy code The code is as follows:




    row number
    {{i 1}}


    Make sure the unit test fails after changing toBe(3) to toBe(4), and then run the ./scripts/test.sh script again

    Summary

    You now have a dynamic application with separate models, views, and controllers that you can test at any time. Now, you can proceed to step 3 to add full-text search functionality to your application.

  • Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    PHP implementation framework: CakePHP introductory tutorial PHP implementation framework: CakePHP introductory tutorial Jun 18, 2023 am 09:04 AM

    With the continuous development of Internet technology, Web development technology is also constantly updated and iterated. As an open source programming language, PHP is widely used in web development. As one of the commonly used tools in PHP development, the PHP framework can improve development efficiency and code quality. This article will introduce you to a PHP framework - CakePHP, and provide some simple tutorials to get started. 1. What is CakePHP? CakePHP is a model based on MVC (Model-View-Control

    Beginner's Guide: Start from scratch and learn MyBatis step by step Beginner's Guide: Start from scratch and learn MyBatis step by step Feb 19, 2024 am 11:05 AM

    Concise and easy-to-understand MyBatis introductory tutorial: write your first program step by step MyBatis is a popular Java persistence layer framework that simplifies the process of interacting with databases. This tutorial will show you how to use MyBatis to create and perform simple database operations. Step 1: Environment setup First, make sure your Java development environment has been installed. Then, download the latest version of MyBatis and add it to your Java project. You can download it from the official website of MyBatis

    PHP implementation framework: Lumen framework introductory tutorial PHP implementation framework: Lumen framework introductory tutorial Jun 18, 2023 am 08:39 AM

    Lumen is a PHP-based microframework developed by Laravel framework developers. It was originally designed to quickly build small API applications and microservices, while retaining some components and features of the Laravel framework. The Lumen framework is lightweight, fast, and easy to use, so it has received widespread attention and use. In this article, we will quickly get started with the Lumen framework and learn how to use the Lumen framework to build simple API applications. Framework preparation Before learning the Lumen framework, we need to

    The latest 5 angularjs tutorials in 2022, from entry to mastery The latest 5 angularjs tutorials in 2022, from entry to mastery Jun 15, 2017 pm 05:50 PM

    Javascript is a very unique language. It is unique in terms of the organization of the code, the programming paradigm of the code, and the object-oriented theory. The issue of whether Javascript is an object-oriented language that has been debated for a long time has obviously been There is an answer. However, even though Javascript has been dominant for twenty years, if you want to understand popular frameworks such as jQuery, Angularjs, and even React, just watch the "Black Horse Cloud Classroom JavaScript Advanced Framework Design Video Tutorial".

    Use PHP and AngularJS to build a responsive website to provide a high-quality user experience Use PHP and AngularJS to build a responsive website to provide a high-quality user experience Jun 27, 2023 pm 07:37 PM

    In today's information age, websites have become an important tool for people to obtain information and communicate. A responsive website can adapt to various devices and provide users with a high-quality experience, which has become a hot spot in modern website development. This article will introduce how to use PHP and AngularJS to build a responsive website to provide a high-quality user experience. Introduction to PHP PHP is an open source server-side programming language ideal for web development. PHP has many advantages, such as easy to learn, cross-platform, rich tool library, development efficiency

    Build web applications using PHP and AngularJS Build web applications using PHP and AngularJS May 27, 2023 pm 08:10 PM

    With the continuous development of the Internet, Web applications have become an important part of enterprise information construction and a necessary means of modernization work. In order to make web applications easy to develop, maintain and expand, developers need to choose a technical framework and programming language that suits their development needs. PHP and AngularJS are two very popular web development technologies. They are server-side and client-side solutions respectively. Their combined use can greatly improve the development efficiency and user experience of web applications. Advantages of PHPPHP

    Getting started with the Python Flask framework Getting started with the Python Flask framework Jun 17, 2023 am 08:48 AM

    PythonFlask framework introductory tutorial Flask is a simple and easy-to-use Python Web framework. It pays more attention to flexibility and lightweight, allowing programmers to build according to their own preferences. This article will introduce you to the basic concepts, installation and use of Flask, and use a simple example to demonstrate how to use Flask to build a web application. What is Flask? Flask is a lightweight web application framework based on Python that does not require the use of any special

    Java Email Sending Guide: Easy Getting Started and Practical Demonstrations Java Email Sending Guide: Easy Getting Started and Practical Demonstrations Dec 27, 2023 am 09:17 AM

    Java Email Sending Tutorial: Quick Start and Example Demonstration In recent years, with the popularity and development of the Internet, email has become an indispensable part of people's daily life and work. Sending emails through the Java programming language can not only achieve fast and efficient email sending, but also greatly improve work efficiency through automation. This article will introduce how to use the JavaMail library to send emails in Java and demonstrate it through specific code examples. Step 1: Import and configure the JavaMail library first

    See all articles