首页 > 代码库 > angularjs外部文件中的控制器使用
angularjs外部文件中的控制器使用
html结构
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="">
</head>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<ul>
<li ng-repeat="x in names">
{{x.name + ‘, ‘ + x.country}}
</li>
</ul>
</div>
</body>
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
<script src="http://www.mamicode.com/namesController.js"></script>
</html>
js脚本(namesController.js)
var app = angular.module("myApp",[]);
app.controller("myCtrl",function($scope){
$scope.names = [
{name:‘Jani‘,country:‘Norway‘},
{name:‘Hege‘,country:‘Sweden‘},
{name:‘Kai‘,country:‘Denmark‘}
];
});
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1895283
angularjs外部文件中的控制器使用