AngularJS 表达式未计算
AngularJS expression not evaluating
我是 AngularJS 的初学者,我目前掌握了基础知识。我正在尝试创建一个简单的菜单,但我有几个 Angular 表达式没有计算; {{ dish.description }} 和 {{ dish.comments }}。我尝试在 Chrome 的开发人员控制台上调试页面,但没有出现错误,所以我不确定可能是什么问题。
<!DOCTYPE html>
<html lang="en" ng-app="confusionApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head
content must come *after* these tags -->
<title>Ristorante Con Fusion: Menu</title>
<!-- Bootstrap -->
<link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../bower_components/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="../bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="styles/bootstrap-social.css" rel="stylesheet">
<link href="styles/mystyles.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row row-content" ng-controller="dishDetailController as dishCtrl">
<div class="media" ng-repeat="dishes in dishCtrl.dish">
<div class="col-xs-12">
<p> {{ dishes.description }} </p>
</div>
<div class="col-xs-9 col-xs-offset-1">
<p> {{ dishes.comments }} </p>
</div>
</div>
</div>
</div>
<script src="../bower_components/angular/angular.min.js"></script>
<script>
var app = angular.module('confusionApp',[]);
app.controller('dishDetailController', function() {
var dish={
name:'Uthapizza',
image: 'images/uthapizza.png',
category: 'mains',
label:'Hot',
price:'4.99',
description:'A unique combination of Indian Uthappam (pancake) and Italian pizza, topped with Cerignola olives, ripe vine cherry tomatoes, Vidalia onion, Guntur chillies and Buffalo Paneer.',
comments: [
{
rating:5,
comment:"Imagine all the eatables, living in conFusion!",
author:"John Lemon",
date:"2012-10-16T17:57:28.556094Z"
},
{
rating:4,
comment:"Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
author:"Paul McVites",
date:"2014-09-05T17:57:28.556094Z"
},
{
rating:3,
comment:"Eat it, just eat it!",
author:"Michael Jaikishan",
date:"2015-02-13T17:57:28.556094Z"
},
{
rating:4,
comment:"Ultimate, Reaching for the stars!",
author:"Ringo Starry",
date:"2013-12-02T17:57:28.556094Z"
},
{
rating:2,
comment:"It's your birthday, we're gonna party!",
author:"25 Cent",
date:"2011-12-02T17:57:28.556094Z"
}
]
};
this.dish = dish;
});
</script>
</body>
</html>
dish
如果你想对它做 ng-repeat
应该是一个数组。
var dish=[{...object1..}, {..object2... ]};
- 首先,您需要将 dish 分配为 $scope 变量 - $scope.dish。
Angular 提供范围以允许您的控制器变量绑定并且可以在 HTML.
中访问
ng-repeat 用于在 DOM 中迭代 $scope 变量,所以 fr 这个而不是 dish={name:'Uthapizza',...} 它必须是一些东西像 dish=[object1, object2];
例如
$scope.dish=[{description:'description 2',comments:'comment 1'},
{description:'description 2',comments:'comment 2'}]
- 你可能会得到注入器错误,你必须在控制器中注入 $scope。
- 您不需要在 angularJS 中使用 this.dish = dish;。
也附上解决方案。
var app = angular.module('confusionApp',[]);
app.controller('dishDetailController', function($scope) {
$scope.dish=[{
rating:5,
comment:"Imagine all the eatables, living in conFusion!",
author:"John Lemon",
date:"2012-10-16T17:57:28.556094Z"
},
{
rating:4,
comment:"Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
author:"Paul McVites",
date:"2014-09-05T17:57:28.556094Z"
},
{
rating:3,
comment:"Eat it, just eat it!",
author:"Michael Jaikishan",
date:"2015-02-13T17:57:28.556094Z"
},
{
rating:4,
comment:"Ultimate, Reaching for the stars!",
author:"Ringo Starry",
date:"2013-12-02T17:57:28.556094Z"
},
{
rating:2,
comment:"It's your birthday, we're gonna party!",
author:"25 Cent",
date:"2011-12-02T17:57:28.556094Z"
}
];
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
<div class="container" ng-app="confusionApp">
<div class="row row-content" ng-controller="dishDetailController as dishCtrl">
<div class="media" ng-repeat="dishes in dish">
<div class="col-xs-12">
<p> {{ dishes.author }} </p>
</div>
<div class="col-xs-9 col-xs-offset-1">
<p> {{ dishes.comment }} </p>
</div>
<div class="col-xs-9 col-xs-offset-1">
<p> {{ dishes.rating }} </p>
</div>
</div>
</div>
</div>
我是 AngularJS 的初学者,我目前掌握了基础知识。我正在尝试创建一个简单的菜单,但我有几个 Angular 表达式没有计算; {{ dish.description }} 和 {{ dish.comments }}。我尝试在 Chrome 的开发人员控制台上调试页面,但没有出现错误,所以我不确定可能是什么问题。
<!DOCTYPE html>
<html lang="en" ng-app="confusionApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head
content must come *after* these tags -->
<title>Ristorante Con Fusion: Menu</title>
<!-- Bootstrap -->
<link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../bower_components/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="../bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="styles/bootstrap-social.css" rel="stylesheet">
<link href="styles/mystyles.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row row-content" ng-controller="dishDetailController as dishCtrl">
<div class="media" ng-repeat="dishes in dishCtrl.dish">
<div class="col-xs-12">
<p> {{ dishes.description }} </p>
</div>
<div class="col-xs-9 col-xs-offset-1">
<p> {{ dishes.comments }} </p>
</div>
</div>
</div>
</div>
<script src="../bower_components/angular/angular.min.js"></script>
<script>
var app = angular.module('confusionApp',[]);
app.controller('dishDetailController', function() {
var dish={
name:'Uthapizza',
image: 'images/uthapizza.png',
category: 'mains',
label:'Hot',
price:'4.99',
description:'A unique combination of Indian Uthappam (pancake) and Italian pizza, topped with Cerignola olives, ripe vine cherry tomatoes, Vidalia onion, Guntur chillies and Buffalo Paneer.',
comments: [
{
rating:5,
comment:"Imagine all the eatables, living in conFusion!",
author:"John Lemon",
date:"2012-10-16T17:57:28.556094Z"
},
{
rating:4,
comment:"Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
author:"Paul McVites",
date:"2014-09-05T17:57:28.556094Z"
},
{
rating:3,
comment:"Eat it, just eat it!",
author:"Michael Jaikishan",
date:"2015-02-13T17:57:28.556094Z"
},
{
rating:4,
comment:"Ultimate, Reaching for the stars!",
author:"Ringo Starry",
date:"2013-12-02T17:57:28.556094Z"
},
{
rating:2,
comment:"It's your birthday, we're gonna party!",
author:"25 Cent",
date:"2011-12-02T17:57:28.556094Z"
}
]
};
this.dish = dish;
});
</script>
</body>
</html>
dish
如果你想对它做 ng-repeat
应该是一个数组。
var dish=[{...object1..}, {..object2... ]};
- 首先,您需要将 dish 分配为 $scope 变量 - $scope.dish。 Angular 提供范围以允许您的控制器变量绑定并且可以在 HTML. 中访问
ng-repeat 用于在 DOM 中迭代 $scope 变量,所以 fr 这个而不是 dish={name:'Uthapizza',...} 它必须是一些东西像 dish=[object1, object2]; 例如
$scope.dish=[{description:'description 2',comments:'comment 1'}, {description:'description 2',comments:'comment 2'}]
- 你可能会得到注入器错误,你必须在控制器中注入 $scope。
- 您不需要在 angularJS 中使用 this.dish = dish;。 也附上解决方案。
var app = angular.module('confusionApp',[]);
app.controller('dishDetailController', function($scope) {
$scope.dish=[{
rating:5,
comment:"Imagine all the eatables, living in conFusion!",
author:"John Lemon",
date:"2012-10-16T17:57:28.556094Z"
},
{
rating:4,
comment:"Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
author:"Paul McVites",
date:"2014-09-05T17:57:28.556094Z"
},
{
rating:3,
comment:"Eat it, just eat it!",
author:"Michael Jaikishan",
date:"2015-02-13T17:57:28.556094Z"
},
{
rating:4,
comment:"Ultimate, Reaching for the stars!",
author:"Ringo Starry",
date:"2013-12-02T17:57:28.556094Z"
},
{
rating:2,
comment:"It's your birthday, we're gonna party!",
author:"25 Cent",
date:"2011-12-02T17:57:28.556094Z"
}
];
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
<div class="container" ng-app="confusionApp">
<div class="row row-content" ng-controller="dishDetailController as dishCtrl">
<div class="media" ng-repeat="dishes in dish">
<div class="col-xs-12">
<p> {{ dishes.author }} </p>
</div>
<div class="col-xs-9 col-xs-offset-1">
<p> {{ dishes.comment }} </p>
</div>
<div class="col-xs-9 col-xs-offset-1">
<p> {{ dishes.rating }} </p>
</div>
</div>
</div>
</div>