当函数中的值更改时,更新textarea中的ng-model

时间:2016-02-23 10:12:50

标签: angularjs

我有这个问题:

<textarea ng-model="modelToUpdate" rows="4" cols="50">

当我在我的脚本中的被调用函数中执行此操作时:

$scope.modelToUpdate = "test"

我希望直接在textarea中看到更改。

1 个答案:

答案 0 :(得分:2)

你关闭了textarea标签??

<body ng-controller="MyCtrl" class="container">
  <textarea ng-model="modelToUpdate" rows="4" cols="50"></textarea>
</body>

有关详细信息,请参阅下面的plunker。

https://plnkr.co/edit/u6kcu9JUTGZ74f4VJDxT