angular.js - ng-repeat ng-controller 的问题
黄舟
黄舟 2017-05-15 16:53:34
0
1
458

代码如下:

html    <table class="table table-bordered">
        <tbody ng-repeat="user in users" ng-controller="ListCtrl"  ng-switch on="" ng-click="toggleSelected()"  ng-switch on="isSelectedAll()" >
            <tr>
                    <td>{{user.name}}</td>
                    <td>{{user.email}}</td>
            </tr> 
            <tr ng-switch-when="true">
                <td colspan="2">{{user.desc}}</td>
            </tr>
        </tbody>
    </table>
jsangular.module('listApp', []);

angular.module('listApp').controller('ListCtrl',function($scope){

    $scope.users = [
        {name:'马春娣',email:'macd@xx.com.cn',desc:'我们比比谁先到家'},
        {name:'邹俊',email:'zenj@xx.com.cn',desc:'300斤有我!'},
        {name:'曾贱',email:'zoujian@xx.com.cn',desc:'我胸大,我说了算!'}
    ];

    $scope.isSelected = false;
    $scope.toggleSelected = function(){
        $scope.isSelected = ! $scope.isSelected;
    };

    $scope.isSelectedAll = function(){
        return $scope.isSelected;
    }
})

代码如上,页面却没有显示。不知道错误原因在哪儿,麻烦大神告知,谢谢了。

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全員に返信(1)
Ty80

アップしますng-controller="ListCtrl" 拿到table

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!