Acessar campos e/ou valores da view através de ViewChield
<input type="text" [value]="valor" #campoInput>
import { Component, OnInit, Input, ElementRef } from '@angular/core';
export class DataBindingComponent implements OnInit {
@ViewChield('campoInput') campoValorInput: ElementRef;
}