其次,当我点击一个“主行”时,我想在此“主行”下显示一行“评论”行.
第三步,然后当我再次点击另一个“主行,一个”评论“行将显示在我点击的主要行下面,并且应该隐藏第一个”评论“行.
总之,我将只显示一个“评论”行,具体取决于我点击的“主行”,并向用户隐藏所有其他“评论”行.
<tbody ng-repeat="(id,product) in products" ng-controller="ProductMainCtrl as main"> <tr id="main" ng-click="parseProductId(product.product_id)"> <td>{{product.product_id}}</td> <td>{{product.name}}</td> <td>{{product.quantity}}</td> <td>{{order.currency_code}} {{product.unit_price}}</td> <td>{{order.currency_code}} {{product.unit_discount}}</td> <td>{{order.currency_code}} {{product.price}}</td> <td id="arrow"><a>Write A Review</a></td> </tr> <tr id="review"> <td colspan="7"> <span ng-include="'views/product/rating_main.html'"></span> </td> </tr> </tbody>
我可以用角度来获得一些想法吗?