Angular 5 Template Reference variable

How to get user input from a template reference variable?

This is the other way to get the user data. It is also called #var.

“A template reference variable is mostly a reference to a DOM element within a template. It can also be a reference to Angular components or directives and others.”

It looks like this.
<input #name placeholder="Enter Name">

The following example shows to get user input from a template reference variable - template-reference.component.ts

import { ComponentOnInit } from '@angular/core';

@Component({
  selector: 'app-template-reference',
  templateUrl: './template-reference.component.html',
  styleUrls: ['./template-reference.component.css']
})
export class TemplateReferenceComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }
}

And template-reference.component.html –
<div class="event">
  <button #keydownVal (keydown)="0"></button>
  <p>
    {{keydownVal.value}}
  </p>
</div>

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How to get user input from a template reference variable? How to get user input from a template reference variable? Reviewed by Anil Singh on 11:12 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^