请问为什么我的html显示的是{{greeting.text}},Angular而不是Hello,Angular
<!DOCTYPE html>
<html ng-app>
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/angular.js"></script>
<script src="js/HelloAngular-MVC.js"></script>
</head>
<body>
<div ng-controller="HelloAngular">
<p>{{greeting.text}},Angular</p>
</div>
</body>
</html>/*JS*/
function HelloAngular($scope) {
$scope.greeting ={
text:'hello'
};
}版本是1.6请问如何解决