typescript 模板语法:双向绑定
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 模板语法:双向绑定相关的知识,希望对你有一定的参考价值。
<!--写法1,这是双向绑定真正的样子-->
<app-sizer [size]="fontSizePx" (sizeChange)="fontSizePx=$event"></app-sizer>
<!--写法2,这是双向绑定的简写-->
<app-sizer [(size)]="fontSizePx"></app-sizer>
import { Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
selector: 'app-sizer',
template: `
<div>
<button (click)="dec()" title="smaller">-</button>
<button (click)="inc()" title="bigger">+</button>
<label [style.font-size.px]="size">FontSize: {{size}}px</label>
</div>`
})
export class SizerComponent {
@Input() size: number | string;
@Output() sizeChange = new EventEmitter<number>();
dec() { this.resize(-1); }
inc() { this.resize(+1); }
resize(delta: number) {
this.size = Math.min(40, Math.max(8, +this.size + delta));
this.sizeChange.emit(this.size);
}
}
以上是关于typescript 模板语法:双向绑定的主要内容,如果未能解决你的问题,请参考以下文章
typescript 角度双向数据绑定
typescript 双向绑定
angular双向绑定
Vue Cli 3 -typescript 如何使用@Prop() 进行双向绑定?
Vue3 中的模板语法
在Angular 6模板语句中将字符串转换为Typescript枚举