我有这个textarea
<textarea ng-model="textArea" ng-change="update(data.id,textArea)" style="height:120px; width:200px;">{{data.description}}</textarea>
当我运行它时,html代码是:
<textarea ng-model="textArea" ng-change="update(data.id,textArea)" style="height:120px; width:200px;" class="ng-pristine ng-valid ng-binding">my test 123</textarea>
没什么奇怪的,除了我在页面上看不到textarea上的文字.....
一些想法??
答案 0 :(得分:0)
这没有意义。 textarea的当前值来自数据绑定( ng-model )。
<textarea ng-model="textArea" ng-change="update(data.id,texArea)"
style="height:120px; width:200px;"></textarea>
在控制器中,使用$scope.textArea = 'YOURVALUE';
或者你可以设置&#34;双重绑定&#34;在控制器中,例如:
$scope.$watch('data.description', function(newValue){
$scope.textArea = newValue;
});
ps,你有TYPO试图拼写&#34; textArea &#34;,你已拼写为&#34; texArea & #34;