title | description | tags | pubDate | contributedBy | |||
---|---|---|---|---|---|---|---|
Built-in control flow in upcoming Angular |
Build in control |
|
Jul 22, 2023 |
@pawanpatil08 |
The new syntax for template control flow has several major goals:
- Syntactically similar to JavaScript's control flow statement syntax.
- Syntactically distinct from HTML syntax.
- Works across multiple templates (if-elseif-else, switch-case-default), including template type-checking.
- Flexible syntax allowing customization for each use case (if vs for vs switch). Address common pain points.
- It must be possible to automatically migrate virtually all existing control flow usage to the new syntax.
{#if cond.expr}
Main case was true!
{:else if other.expr}
Extra case was true!
{:else}
False case!
{/if}
{#switch cond.kind}
{:case x}
X case
{:case y}
Y case
{:case z}
Z case
{:default}
No case matched
{/switch}
{#for item of items; track item.id}
{{ item }}
{:empty}
There were no items in the list.
{/for}
{#if cond.expr}
<child-cmp />
{/if}
{#if a > b}
{{a}} is greater than {{b}}
{/if}
{#if a > b}
{{a}} is greater than {{b}}
{:else if b > a}
{{a}} is less than {{b}}
{:else}
{{a}} is equal to {{b}}
{/if}
link for RFC : angular/angular#50719