如何在 Ionic 2 中对ion-input
组件进行自动换行?
这有效:
<ion-item text-wrap>
<div>A really realll really really loooooooonnngg text.</div>
</ion-item>
但这并不是:
<ion-item text-wrap>
<ion-input
type="text"
id="commuterLocation"
name="commuterLocation"
readonly=true
placeholder="Enter your location"
(focus)="onCommuterLocationFocus()"
[(ngModel)]="_commuterLocation.description"></ion-input>
</ion-item>
编辑1:
当我在具有常规text-wrap
元素的ion-item
上使用html
指令时,元素&#39;内容按预期包装。但是ion-input
的输入文字并没有...我该如何解决这个问题?在此先感谢您的帮助。
答案 0 :(得分:13)
使用ion-textarea
而不是ion-input
来解决此问题。
<ion-item text-wrap>
<ion-textarea
type="text"
id="commuterLocation"
name="commuterLocation"
readonly=true
placeholder="Enter your location"
(focus)="onCommuterLocationFocus()"
[(ngModel)]="_commuterLocation.description"></ion-textarea>
</ion-item>