我是Angular js.的新手。我创建了从Mysqli获取数据的报告。我只需要M_Date列的日期范围,这样我就可以在两个日期之间显示已发布的瓶子。
HTML code:
<input type="text" ng-model="start" class="form-control" placeholder="Search">
<input type="text" ng-model="end" class="form-control" placeholder="Search">
<thead><tr>
<th ng-click="sort('M_Date')">Date</th>
<th>Issued Bottles </th>
</thead>
<tbody>
<tr ng-repeat="user in users | filter:range()>
<td>{{user.M_Date}}</td>
<td>{{user.NoBot}}</td>
</tr>
</tbody>
Angular js:
$scope.range = function (user.M_Date, $scope.start, $scope.end) {
return (user.M_Date < $scope.start && user.M_Date > $scope.end);
}
请建议我一些想法,以便我可以编码。谢谢。