html - angularJS/ionicでスコープを表示しようとしています タイトルをWebページに表示しようとしていますが、何も表示されません。私は角度とイオンの枠組みにはかなり新しいです。誰かが私が間違っていることを指摘できれば、それはトンを助けるでしょう!
html - angularJS/ionicにスコープを表示しようとしています
angular.module('MyApp', [])
.controller('TodoCtrls', function($scope) {
$scope.tasks = [
{ title: 'Collect coins' },
{ title: 'Eat mushrooms' },
{ title: 'Get high enough to grab the flag' },
{ title: 'Find the Princess' }
];
})
そして、私のhtml:
<html ng-app="MyApp">
<ion-header>
<ion-navbar>
<ion-title>Courses</ion-title>
<h1 class="title">Todo</h1>
</ion-navbar>
</ion-header>
<script src="TodoCtrl.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body ng-app="MyApp" ng-controller="TodoCtrls">
<ion-content>
<ion-list>
<ion-item ng-repeat="task in tasks">
<h1>{{task.title}}</h1><br>
</ion-item>
</ion-list>
</ion-content>
</body>
</html>
それを稼働させましたか? :) –