我试图从文本中获取注入文本区域的行数,由于某种原因我无法获得textarea来初始化行数,这是我的代码。我做错了什么?
<div class="form-group col-sm-12">
<textarea contenteditable="true"
rows="'iwofRecord.WhatHasBeenDone.split('\n').lenght'"
class="form-control form-control-plain"
ng-model="iwofRecord.WhatHasBeenDone"
placeholder="What Has Been Done">
</textarea>
</div>
答案 0 :(得分:2)
.lengHT
- 有一个拼写错误,必须是.length
答案 1 :(得分:2)
rows
不是Angular属性,将其包含在{{}}
中 - 您还要双引用该属性(并且length
拼写错误)
rows="{{iwofRecord.WhatHasBeenDone.split('\n').length}}"