即时发送输入值到API

时间:2017-11-30 18:35:44

标签: javascript angularjs

在我的应用程序中,有一些输入文本字段,其中数据正由应用程序填充。这些字段可由用户编辑。

我想将编辑后的值发送给API,但应用程序正在发送旧值(而不是编辑过的值)。我正在使用角度1。

这是我正在使用的一些代码:

<td><input type="text" class="form-control" ng-model="value1"></td> 
<td><input type="text" class="form-control" ng-model="value2"></td> 
<td><input type="text" class="form-control" ng-model="VALUE3"></td>

我尝试过另一件事:

<td><input type="text" class="form-control" ng- keyup="value1"></td>

0 个答案:

没有答案