双单选按钮选择错误AngularJs

时间:2016-02-18 19:02:05

标签: javascript angularjs

我有一组单选按钮,当我加载我的应用程序时默认选择第一个收音机,所以如果我去第二个收音机,我可以在HTML表格中看到不同的信息,然后如果我改变我的值过滤然后发出请求我希望再次刷新单选按钮并选择默认值但是没有发生,第二个单选按钮被选中。

    <div class="radio" ng-init="topTable='topCategory'">
        <label class="radio-inline"><input type="radio" ng-model="topTable" value="topCategory" ng-change="updateTotals('topCategory')">TY Top 30 Categories</label>
        <label class="radio-inline"><input type="radio" ng-model="topTable" value="topSupplier" ng-change="updateTotals('topSupplier')">TY Top 10 Suppliers</label>
        <label class="radio-inline"><input type="radio" ng-model="topTable" value="topBrand" ng-change="updateTotals('topBrand')">TY Top 10 Brands</label>
    </div>

ng-init使第一个无线电选择我也使用了这样的功能

    function topRadios() {
        $scope.topTable = "topCategory";

    }

我的ng-init是&#34; ng-init =&#34; topRadios()&#34 ;;

我不知道我是否需要使用ng值而不是值,或者我是否需要向控制器添加一些逻辑或什么。

对此有何帮助?

1 个答案:

答案 0 :(得分:0)

您可以回忆起这样的功能:

nome TEXTlocal TEXT

以及相应的功能:

 <button ng-click="triggerTable()" type="button">Refresh</button>

Example