我是angularjs的新手,我正在做一个简单的测试脚本。根据视频教程,我看着代码是正确的。但是不能在我的浏览器中运行。
<!doctype html>
<html lang="en" ng-app>
<head>
<meta charset="UTF-8">
<title>Angular Demo</title>
<script src="lib/angular/angular.min.js"></script>
</head>
<body>
<div ng-controller = "MyController">
<h1>{{author.name}}</h1>
<p>{{author.title + ',' + author.company}}</p>
</div>
<script>
function MyController($scope){
$scope.author = {
'name' : 'palitha ',
'title' : 'test',
'company' : 'Home company'
}}
</script>
</body>
</html>
任何人都可以告诉我哪里出错了。
答案 0 :(得分:2)
男人你看到的视频已经过时了,他们制作控制器的方式也很老旧,这不再是制作控制器的方式了。
var app=angular.module('adb',[]);
app.controller('AppCtrl',function($scope){
});
或使用与视频中相同的角度版本 你可能会看到lynda的角度教程 see this one