<!DOCTYPE html> <html ng-app="scotchApp"> <head> <meta charset="UTF-8"> <title>About</title> <script src="js/angular.min.js"></script> <script src="js/script.js"></script> </head> <body ng-controller="aboutController"> <div class="jumbotron text-ceenter"> <h1>About Page</h1> <p>{{message}}</p> </div> </body> </html>
scotchApp.controller('aboutController',function($scope){ $scope.message='look! I am an about page.'; });
运行结果:
{{message}}
哪里出现问题了?
O_____O
相关分类