【问题标题】:AngularJS - ngSwitch with multi dimension arrayAngularJS - 具有多维数组的 ngSwitch
【发布时间】:2015-11-20 18:13:13
【问题描述】:

我正在尝试根据给定的数组结构更改显示结果。我以为我可以用ng-switch做到这一点,但找不到解决方法。

我有这个 json:

0: {size: 1, room: 1, id: 1, name: "",…}
huesped: {id: 1, name: "Pablo", lastname: "Bertran", passport: "33025915N", birth: "1987-04-14", country: 10,…}
id: 1
name: ""
room: 1
size: 1
stay: {id: 1, booking: 0, room: 1, bed: 1, guest: 1, indate: "2015-11-02", outdate: "2015-12-02", hotel: 1,…}
1: {size: 1, room: 1, id: 2, name: ""}
2: {size: 1, room: 1, id: 3, name: ""}
3: {size: 1, room: 1, id: 4, name: ""}
4: {size: 1, room: 1, id: 5, name: ""}
5: {size: 1, room: 1, id: 6, name: ""}
6: {size: 2, room: 2, id: 7, name: "1"}

事情是这样的。如果声明了“huesped”位置,我需要一个场景。 如果stay.booking > 0,场景B。 如果没有宣布停留,场景 C。

我试过这段代码: (假设json在$scope.beds)

                    <div ng-switch on="bed">
                        <div ng-switch-when="bed.huesped">
                            <div class="md-list-item-text" ng-click="accion(bed.guest.id, 2)" style="background-color: rgba(0,0,255,0.7);">
                                <h3>Cama - {{::bed.id}}</h3>
                                <h4>{{ bed.huesped.name }} {{ bed.huesped.lastname }}</h4>
                            </div>
                        </div>
                        <div ng-switch-when="bed.stay.booking">
                            <div class="md-list-item-text" ng-click="accion(bed.booking.id, 3)" style="background-color: rgba(255,0,0,0.7);">
                                <h3>Cama - {{::bed.id}}</h3>
                                <h4>{{ bed.booking.name }}</h4>
                            </div>
                        </div>
                        <div ng-switch-default>
                            <div class="md-list-item-text" ng-click="accion(bed.id, 1)" style="background-color: rgba(0,255,0,0.7);">
                                <h3>Cama - {{::bed.id}}</h3>
                                <h4>{{::bed.size}} Plaza(s)</h4>
                            </div>
                        </div>
                    </div>

我知道出了点问题。不知道代码中是否有一些细节,或者 ng-switch 是否无法满足我的需要。 希望你能帮助我。

【问题讨论】:

    标签: angularjs ng-switch


    【解决方案1】:

    https://docs.angularjs.org/api/ng/directive/ngSwitch 说:

    请注意,要匹配的属性值不能是表达式。它们被解释为要匹配的文字字符串值。例如,ng-switch-when="someVal" 将匹配字符串 "someVal" 而不是表达式 $scope.someVal 的值。

    ng-if 可以轻松解决您的问题。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-11-23
      • 1970-01-01
      • 2016-08-25
      • 2017-05-08
      • 2012-07-23
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多