Angular Template Binding: How to Bind Property Value to an Expression
The correct syntax for an Angular template that binds property value to the results of the expression 'firstname' is:
<input [value]="firstname">
This syntax uses square brackets [] to indicate property binding. The expression inside the brackets firstname will be evaluated and its value will be assigned to the value property of the input element.
原文地址: https://www.cveoy.top/t/topic/p2df 著作权归作者所有。请勿转载和采集!