我正在尝试在下拉列表中更新我的值而不刷新页面。我怎样才能做到这一点?我的代码:
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);
};
。选择值后如何更新?