为占位符赋值的最佳方法是什么?
我有一个具有placeHoldertext的properiesMap。我尝试了下面的代码,效果很好,但是我可以做得更好吗?
/* for input box */
<input #box type="text" placeholder="{{x.getPropertyMap().get('placeHolderText')}}">
/* for drop down */
<select>
<option value="" disabled selected> {{x.getPropertyMap().get('placeHolderText')}}</option>
<option value="hurr">Durr</option>
</select>
上面的代码可以正常工作,但对我来说却显得太笨拙,因为我不得不超时dox.getPropertyMap()。get('placeHolderText')来显示占位符。有人可以提出更好的解决方案吗?