AngularJS - 在ng-repeat中使用ng-show

Phi*_*egg 24 javascript angularjs angularjs-ng-repeat angularjs-ng-show

我在ng-repeat块中使用ng-show指令时遇到问题.

布尔值似乎没有正确传递给ng-show ...

为了表明我的意思,这里是我在JSFiddle中做的一个例子的截图:

在此输入图像描述

这是一些示例标记:

<table ng-controller="ActressController" class="table table-bordered table-striped">
    <tr ng-repeat="actress in actressList">
        <td>
            <span class="actress-name">{{ actress.name }}</span>
            <h4 ng-show="{ actress.name == 'Scarlett' }">Was in Avengers! <span class="note">(should only appear if Scarlett)</span></h4>
            <h2>{{ actress.name == 'Scarlett'}} <span class="note"><-- this statement is correct</span></h2>

        </td>

    </tr>
</table>
Run Code Online (Sandbox Code Playgroud)

这是一个示例控制器:

function ActressController($scope) {
    $scope.actressList = [
        {
            name: "Angelina"
        }, {
            name: "Scarlett"
        }, {
            name: 'Mila'
        }, {
            name: 'Megan'
        }
    ]        

}
Run Code Online (Sandbox Code Playgroud)

关于我可能做错的任何想法?

Glo*_*opy 36

在你,ng-show你不需要{}试试这个:

<h4 ng-show="actress.name == 'Scarlett'">Was in Avengers! <span class="note">
Run Code Online (Sandbox Code Playgroud)

一下这个小提琴ng-show内部工作样本ng-repeat.