我正在尝试学习angularjs,而我似乎在制作我的桌子时遇到了麻烦。 我从一个php文件中取出json,将它放在范围内并使用ng-repeat。 我明白要更新表我需要在范围内更新数组,但我不知道如何正确编写它。
html:
<tr ng-repeat="x in livedt | orderBy:tableOrder | filter:Search">
<td>{{ x.id }}</td>
<td>{{ x.ph }}</td>
<td>{{ x.ec }}</td>
<td>{{ x.tmp }}</td>
<td>{{ x.inpdate }}</td>
</tr>
控制器:
app.controller('tableCtrl', function ($scope, $http) {
$http.get("livedata.php").then(function (response) {
$scope.livedt = response.data;
});
});