だから私は AngularJS のチュートリアルに取り組んでいるので、これがこれらのタスクを完了する最善の方法ではないことはわかっていますが、これが私が行っているステップです。ビューにデータを読み込もうとしていますが、データが表示されません。私の ng-view と私の ng-route は適切に機能してそこにたどり着きますが、患者.html にアクセスすると、テーブル ヘッダーだけが表示され、情報が表示されません。私は何が欠けていますか?
これが私のモジュールです
(function() {
var app = angular.module('cbApp', ['ngRoute']);
app.config(function($routeProvider){
$routeProvider
.when('/',{
controller : 'MainCtrl',
templateUrl : 'views/main.html'
})
.when('/patient/:roomId', {
controller : 'PatientCtrl',
templateUrl : 'views/patient.html'
})
.otherwise({ redirectTo : '/' });
});
}());
これが私のコントローラーです
(function() {
var PatientCtrl = function ($scope, $routeParams) {
var roomId = $routeParams.roomId;
$scope.patient = null;
//create a function that searches the rooms for id
function init() {
var length = $scope.rooms.length;
for (var i = 0; i < length; i++){
if ($scope.rooms[i].name === parseInt(roomId)) {
$scope.patient = $scope.rooms[i].patient;
break;
}
}
}
$scope.rooms = [
{ id : 101, name : "101", patient : { id : 1, last: "Ratcliff", first : "Daniel"} },
{ id : 102, name : "102", patient : { id : 2, last: "Gibson", first : "Mel"} },
{ id : 103, name : "103", patient : { id : 3, last: "Fey", first : "Tina"} }
];
init();
}
//handle DI to avoid minification errors
PatientCtrl.$inject = ['$scope', '$routeParams'];
//define the controller in angular
angular.module('cbApp').controller('PatientCtrl', PatientCtrl);
}());
と私の見解
<h2>Room Details</h2>
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
<tr ng-repeat="pt in patient">
<td>{{ pt.first }}</td>
<td>{{ pt.last }}</td>
</tr>
</table>