0
角度2(2.0.0)+ TS。角度2的數字驗證
我必須在表中的列中設置<input>
標記的驗證規則。
對於expample,我有一些表和輸入:
<table>
<tr>
<td>Values: {{ dataFromServer }}</td>
</tr>
</table>
<input type="number" placeholder="maxvalue">
<input type="number" placeholder="minvalue">
dataFromServer
是一種價值,這是我從服務器獲取,並等於255
。
我加maxvalue = 100
和minvalue = 20
,然後Values: 255
變紅。如何實現這一點?或者給我一些有趣的例子。