我想了解HTML綁定,因爲我是新的角。 能有人請解釋下面的語法之間的區別:角2:HTML屬性綁定
<!-- 1 -->
<button name1 = "name2" >test</button>
<!-- 2 -->
<button (name1) = "name2" >test</button>
<!-- 3 -->
<button [name1] = "name2" >test</button>
<!-- 4 -->
<button ([name1]) = "name2" >test</button>
我已經在多個地方上面看到的,但無法瞭解每個案件的目的。
謝謝你的幫助!
https://angular.io /docs/ts/latest/guide/template-syntax.html#!#twoway –
我認爲[綁定語法](https://angular.io/docs/ts/latest/guide/template-syntax.html# !#binding-syntax)i就是你正在尋找 –