如何在不刷新页面的情况下从下拉列表更新值

时间:2017-08-16 13:50:38

标签: html angularjs

我正在尝试在下拉列表中更新我的值而不刷新页面。我怎样才能做到这一点?我的代码:

BufferTotal.add(byte[])

因此,在我从下拉列表中选择一个值后,只有刷新页面时才会更新值<div class="dropdown" uib-dropdown> <button type="button" uib-dropdown-toggle class="btn btn-primary dropdown-toggle"> {{ '{{ item.type}}' }} <span class="caret"></span> </button> <ul class="dropdown-menu" uib-dropdown-menu > <li><a ng-show=" item.type != 'food'" ng-click="setRole(item.id, 'food');">food</a></li> <li><a ng-show="item.type != 'product'" ng-click="setRole(item.id, 'product')">product</a></li> <li><a ng-show="item.type != 'tool'" ng-click="setRole(item.id, 'tool')">tool</a></li> </ul> </div> $scope.setRole = function(id, role) { ItemService.setType(id, role); $scope.getItems($scope.thisPage); }; 。选择值后如何更新?

0 个答案:

没有答案