-2
I made a little source with controller in Angularjs and when executing I receive the error of the attached message.
I don’t know where the error could be considering that this code is very simple.
Source:
<!DOCTYPE html>
<html lang="pt-br" ng-app>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Controllers</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular.min.js"></script>
</head>
<body>
<div ng-controller="CtrlApp">
<h1>{{nome}}</h1>
</div>
</body>
<script type="text/javascript">
var CtrlApp = function(){
}
</script>
</html>
Ronaldo, please post the error text and not an image.
– Jéf Bueno