My code:
我的代码:
<!DOCTYPE html>
<head>
<title>Learning AngularJS</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js" type="text/javascript"></script>
</head>
<body>
<div class="container" style="background: #eec; min-height:300px; margin-top: 15px;" ng-controller="SimpleController">
<ul>
<li ng-repeat="woman in customer">{{ woman.name }}</li>
</ul>
</div>
<!DOCTYPE html>
<head>
<tit