我是js / html / css等的新手,并试图教自己棱角分明,但我仍然坚持看似简单的事情。
当我加载下面描述的页面时,我得到标题和一个项目列表,其中包含我想要角度替换“{{e.someKey}}”的文本。我正在寻找的是两个子弹 - someValue1和someValue2。
在index.html中:
<!doctype html>
<html lang="en" ng-app="myfirstapp">
<head>
<meta charset="utf-8">
<title>my first app</title>
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="lib/angular/angular.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
</head>
<body>
<h1>My First App</h1>
<div ng-controller="MyFirstAppController">
<ul>
<li ng-repeat="e in elementArray">
<p>{{e.someKey}}</p>
</li>
</ul>
</div>
</body>
</html>
控制器如下所示:
function MyFirstAppController($scope) {
$scope.elementArray = [
{ someKey : 'someValue1', someOtherKey : 'someOtherValue1' },
{ someKey : 'someValue2', someOtherKey : 'someOtherValue2' }
];
}
我已经尝试了大量的语法调整,但我必须遗漏一些更基本的东西。任何想法都非常感激!