Home Web Front-end JS Tutorial About the basic usage of built-in directives in Angular4

About the basic usage of built-in directives in Angular4

Jun 25, 2018 am 10:49 AM
angular built-in commands instruction

The following article mainly introduces you to the basic usage of built-in instructions in Angular4. The article introduces it in detail through sample code. Friends who need it can take a look below.

I have to say that instructions are one of the most powerful functions of ng. Well, you can also remove one of them. It is the most powerful function.

Preface

Everyone knows that ng has many built-in custom instructions, which prevents us from reinventing the wheel ourselves. At the same time, ng also provides the function of custom instructions, which can make our page element tags more instantiated.

In this article, we will list the usage of each built-in command separately and provide an example as a demonstration. Try to use the least and simplest description so that you can learn the basic usage of each built-in command faster and more accurately.

ngFor

Function: Like a for loop, you can repeatedly take values ​​from the array and display them.

Example:

// .ts

this.userInfo = ['张三', '李四', '王五'];

// .html

<p class="ui list" *ngFor="let username of userInfo">
 <p class="item">{{username}}</p>
</p>
Copy after login

Explanation:

His syntax is *ngFor="let username of userInfo", where userInfo is the array from which values ​​are taken, and username is the value taken out from it each time. Then the content in this tag will be executed repeatedly, and the username will be displayed through two-way binding.

ngIf

Function: Decide whether to show or hide this element based on conditions.

Example:

// .html

<p *ngIf="false"></p>
<p *ngIf="a > b"></p>
<p *ngIf="username == &#39;张三&#39;"></p>
<p *ngIf="myFunction()"></p>
Copy after login

Explanation:

  • Never displayed

  • Displayed when a is greater than b

  • Displayed when username is equal to Zhang San

  • Decide whether to display or not based on the return value of myFunction() function

ngSwitch

Function: Prevent complex conditions from causing excessive use of ngIf.

Example:

// .html

<p class="container" [ngSwitch]="myAge">
 <p *ngSwitchCase="&#39;10&#39;">age = 10</p>
 <p *ngSwitchCase="&#39;20&#39;">age = 20</p>
 <p *ngSwitchDefault="&#39;18&#39;">age = 18</p>
</p>
Copy after login

Explanation:

[ngSwitch] Bind to the target first, ngSwitchCase lists each possibility, and ngSwitchDefault lists the default value.

ngStyle

Function: You can use dynamic values ​​to set CSS properties for specific DOM elements.

Example:

// .ts
backColor: string = &#39;red&#39;;

// .html
<p [style.color]="yellow">
 你好,世界
</p>
<p [style.background-color]="backColor">
 你好,世界
</p>
<p [style.font-size.px]="20">
 你好,世界
</p>
<p [ngStyle]="{color: &#39;white&#39;, &#39;background-color&#39;: &#39;blue&#39;, &#39;font-size.px&#39;: &#39;20&#39;}">
 你好,世界
</p>
Copy after login

Explanation:

  • Set the color directly to yellow.

  • Set the background color to backColor, and modify the value of backColor in the .ts file.

  • Set the font size. It should be noted that if you only write font-size, an error will be reported. You must add .px at the end. Of course .em .% are all acceptable.

  • The first three are to set only one. You can write multiple ones at the same time by writing [ngStyle], and use curly brackets to enclose the inner strength. It should be noted that the hyphen - is not allowed to appear in the key name of the object. If you use background-color, etc., you need to add single quotes.

ngClass

Function:Dynamicly set and change the content of a given DOM element CSS class.

Example:

// .scss
.bordered {
 border: 1px dashed black;
 background-color: #eee;
}

// .ts
isBordered: boolean = true;
 
// .html
<p [ngClass]="{bordered: isBordered}">
 是否显示边框
</p>
Copy after login

Explanation:

    Setting the style in
  • scss is equivalent to you building a class="bordered".

  • #ts has a new isBordered, which is used to determine whether to display the styles in .scss.

  • #html uses isBordered as the basis for judging whether bordered is displayed.

ngNonBindable

##Function: Tell Angular not to bind a certain part of the page.

Example:

.html

<p ngNonBindable>
 {{我不会被绑定}}
</p>
Copy after login

Explanation:

When ngNonBindable is used, the curly braces will be displayed together as a string.

Summary

In daily development, ngFor and ngIf should be used the most, so they are written first. As for ngNonBindable, I have never used it once in actual development. I just checked the information and tested it before writing it down.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

How to disable template caching in AngularJs

How to clear the browser cache in angularJs

The above is the detailed content of About the basic usage of built-in directives in Angular4. For more information, please follow other related articles on the PHP Chinese website!

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)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 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)

How to get items using commands in Terraria? -How to collect items in Terraria? How to get items using commands in Terraria? -How to collect items in Terraria? Mar 19, 2024 am 08:13 AM

How to get items using commands in Terraria? 1. What is the command to give items in Terraria? In the Terraria game, giving command to items is a very practical function. Through this command, players can directly obtain the items they need without having to fight monsters or teleport to a certain location. This can greatly save time, improve the efficiency of the game, and allow players to focus more on exploring and building the world. Overall, this feature makes the gaming experience smoother and more enjoyable. 2. How to use Terraria to give item commands 1. Open the game and enter the game interface. 2. Press the &quot;Enter&quot; key on the keyboard to open the chat window. 3. Enter the command format in the chat window: &quot;/give[player name][item ID][item quantity]&quot;.

How to install Angular on Ubuntu 24.04 How to install Angular on Ubuntu 24.04 Mar 23, 2024 pm 12:20 PM

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

Detailed explanation of angular learning state manager NgRx Detailed explanation of angular learning state manager NgRx May 25, 2022 am 11:01 AM

This article will give you an in-depth understanding of Angular's state manager NgRx and introduce how to use NgRx. I hope it will be helpful to you!

VUE3 quick start: using Vue.js instructions to switch tabs VUE3 quick start: using Vue.js instructions to switch tabs Jun 15, 2023 pm 11:45 PM

This article aims to help beginners quickly get started with Vue.js3 and achieve a simple tab switching effect. Vue.js is a popular JavaScript framework that can be used to build reusable components, easily manage the state of your application, and handle user interface interactions. Vue.js3 is the latest version of the framework. Compared with previous versions, it has undergone major changes, but the basic principles have not changed. In this article, we will use Vue.js instructions to implement the tab switching effect, with the purpose of making readers familiar with Vue.js

A brief analysis of how to use monaco-editor in angular A brief analysis of how to use monaco-editor in angular Oct 17, 2022 pm 08:04 PM

How to use monaco-editor in angular? The following article records the use of monaco-editor in angular that was used in a recent business. I hope it will be helpful to everyone!

An article exploring server-side rendering (SSR) in Angular An article exploring server-side rendering (SSR) in Angular Dec 27, 2022 pm 07:24 PM

Do you know Angular Universal? It can help the website provide better SEO support!

How to use PHP and Angular for front-end development How to use PHP and Angular for front-end development May 11, 2023 pm 04:04 PM

With the rapid development of the Internet, front-end development technology is also constantly improving and iterating. PHP and Angular are two technologies widely used in front-end development. PHP is a server-side scripting language that can handle tasks such as processing forms, generating dynamic pages, and managing access permissions. Angular is a JavaScript framework that can be used to develop single-page applications and build componentized web applications. This article will introduce how to use PHP and Angular for front-end development, and how to combine them

Angular components and their display properties: understanding non-block default values Angular components and their display properties: understanding non-block default values Mar 15, 2024 pm 04:51 PM

The default display behavior for components in the Angular framework is not for block-level elements. This design choice promotes encapsulation of component styles and encourages developers to consciously define how each component is displayed. By explicitly setting the CSS property display, the display of Angular components can be fully controlled to achieve the desired layout and responsiveness.

See all articles