我有这个问题:
<textarea ng-model="modelToUpdate" rows="4" cols="50">
当我在我的脚本中的被调用函数中执行此操作时:
$scope.modelToUpdate = "test"
我希望直接在textarea中看到更改。
答案 0 :(得分:2)
你关闭了textarea标签??
<body ng-controller="MyCtrl" class="container">
<textarea ng-model="modelToUpdate" rows="4" cols="50"></textarea>
</body>
有关详细信息,请参阅下面的plunker。