双向绑定

Posted dingdc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了双向绑定相关的知识,希望对你有一定的参考价值。

<div>
    <button class="btn btn-danger" (click)="dec()" title="smaller">-</button>
    <button class="btn btn-primary" (click)="inc()" title="bigger">+</button>
    <label [style.font-size.px]="size">FontSize: {{size}}px</label>
</div>
import { Component, EventEmitter, Input, OnInit, Output } from ‘@angular/core‘;

@Component({
  selector: ‘app-sizer‘,
  templateUrl: ‘./sizer.component.html‘,
  styleUrls: [‘./sizer.component.scss‘]
})
export class SizerComponent implements OnInit {
  @Input() size = 16;
  @Output() sizeChange = new EventEmitter<Number>()
  constructor() { }

  ngOnInit(): void {
  }

  dec() { 
    // this.size-- ;
    this.sizeChange.emit(this.size - 1)
  }
  inc() { 
    // this.size++; 
    this.sizeChange.emit(this.size + 1)
  }

}

<!-- <app-sizer [size] = "size" (change)="size = $event"></app-sizer> -->
<!-- <app-sizer [(size)] = "size"></app-sizer>
<p><label [style.font-size.px]="size">FontSize: {{size}}px</label></p> -->

import { Component } from ‘@angular/core‘;

@Component({
  selector: ‘app-root‘,
  templateUrl: ‘./app.component.html‘,
  styleUrls: [‘./app.component.scss‘]
})
export class AppComponent {
  size = 16;
  title = ‘ngone‘;
  con = "OK";
  
 
}

以上是关于双向绑定的主要内容,如果未能解决你的问题,请参考以下文章

vue双向绑定原理

双向数据绑定和单向数据绑定解释

原生js实现数据双向绑定

mvvm双向绑定机制的原理和代码实现

angularjs系列之双向绑定

微信小程序复杂对象的双向绑定(附代码可直接使用)