我试图在 ng-repeat 中使用 ng-if,但似乎 ng-if 无法正常工作。
我在 StackOverflow 中提到了几个论坛链接,但它对我没有帮助。
我正在使用角度版本 1.3.0
HTML
<!DOCTYPE html>
<html ng-app="myModule">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<script src="/js/lib/angular-1.3.0/angular.js"></script>
<script src="/js/lib/controllers/ifRepeatController.js"></script>
</head>
<body>
<div ng-repeat = "data in comments">
<div ng-if="data.type == 'hootsslllll' ">
//differnt template with hoot data
</div>
<div ng-if="data.type == 'story' ">
//differnt template with story data
</div>
<div ng-if="data.type == 'article' ">
//differnt template with article data
</div>
</div>
</body>
</html>
控制器
var myIfRepeat = angular.module('myIfRepeat',[]);
myIfRepeat.controller('IfRepeatController', function ($scope,$http) {
$scope.comments = [
{"_id":"1",
"post_id":"1",
"user_id":"UserId1",
"type":"hoot"},
{"_id":"2",
"post_id":"2",
"user_id":"UserId2",
"type":"story"},
{"_id":"3",
"post_id":"3",
"user_id":"UserId3",
"type":"article"}
];
});
根据第一个条件,第一行不应显示(在下面找到屏幕截图以获取更多参考),但该行正在显示。
现在我按照建议在 div 中添加了控制器,但是我面临同样的问题
下面我给出了截图供参考。请帮助我如何解决这个问题,如果有进一步的说明,请告诉我。
下面提供了使用 angular 1.3 版本的工作模型的屏幕截图。如果我们使用 angular 1.0.2,nf-if 将无法正常工作(下面提供了屏幕截图)
角度版本 1.0.2 的屏幕截图