0
我想將2個簡單的inputfields綁定到angular2中的1個點擊事件。一個盒子應該是輸入文本的正常輸入,另一個盒子將提供時間戳Date();
。 如何在按鈕上單擊事件顯示兩個值?angular 2 snytax用於將2個對象綁定到1個事件
// input #date offers the timestamp timestamp
<input #date type="text" placeholder="now">
<input #text type="text">
<p><b>{{now}}</b> {{values}}</p>
<button class="btn btn-primary" (click)="values=box.value | text.value">Log Data</button>
不清楚是什麼你正在嘗試做的,你能添加任何例子,它似乎想要{{date.value + text.value }} –
是的。這就是我想要的。當前日期和時間由Date(); ''作爲''日期'從component.ts和'文本'無論是輸入的值。在點擊該按鈕後,兩者都應顯示在
{{values}}
中。 – edamerau