コントローラーを使用してデータを印刷する単純なスクリプト。どこが間違っているのかわかりません..コードはindex.html、app.js、およびmail-list.component.jsで構成されています。mail-list.component は、ビュー用のテンプレートを作成し、コントローラーを登録するために使用されます。
index.html
<!doctype html>
<html lang="en" ng-app="mailApp">
<head>
<meta charset="utf-8">
<title>Mail System</title>
<link rel="stylesheet" href="css/style.css">
<script src = "angular.min.js"> //angular 2
</script>
<script src="app.js"></script>
<script src="mail-list.component.js"></script>
</head>
<body>
<!--use a custom component to render the mails-->
<mail-list></mail-list>
</body>
</html>
app.js
'use strict';
// Define the 'mailApp' module
angular.module('mailApp', []);
メールリスト.component.js
'use strict';
// Register `mailList` component, along with its associated controller and template
angular.
module('mailApp').
component('mailList',{
template:
'<span ng-repeat="mail in $ctrl.mails"> '+
'<input type="checkbox"><b>{{mail.sender }}:<i> {{mail.subject}}</i></b> {{ mail.message}}</span>',
controller: function MailListController(){
this.mails=[
{
sender: 'Monu',
subject: 'Regarding Gate',
message:'start preparing or gate 2017 exam, dont miss this time'
},{
sender: 'Shiv',
subject: 'College Over',
message:'B.tech is over, now i am a graduate, hurrey!!'
},{
sender: 'Monu',
subject: 'Regarding bag',
message:'purchase a new bag for me '
}
];
}
});