我是一個初學者到angular2 /打字稿我從兩個文本框試圖獲取數和增加這兩個數字中獲得價值,並使用插值如何從文本框使用打字稿在角2
@Component({
selector: 'my-app',
template:
`<h1>Hello {{name}}</h1>
<h1>{{D}}</h1>
<form>
<p>first number:<input type="text" id="num1"></p>
<p>second number:<input type ="text1" id="num2"></p>
<h1> {{result}}</h1>
</form>
<test-app></test-app>`
})
export class AppComponent
{
name = 'Angular';
value : number;value1 : number;result:number;
constructor(value : number,value1 : number,result:number)
{
this.value = parseFloat
((document.getElementById("text") as HTMLInputElement).value);
this.value1 = parseFloat((document.getElementById("text1")
as HTMLInputElement).value);
this.result=this.value+this.value1;
}}
https://angular.io/docs/ts/latest/guide/user- input.html – echonax
綁定到表單元素是幾乎所有角度教程的開始部分所涵蓋的內容,包括主角2站點上的許多操作指南和教程。按照鏈接@echonax張貼,看看你是否可以弄明白。 – Igor
你有沒有讀過角度的東西? – Aravind