0
각도 연습을 시도하고 있는데이 문제가 있습니다.각도 클릭로드 컨트롤러
어떻게NG 클릭 부하 displayController을해야합니까? 아니면 내가 잘못하고있는거야?
각
var bible = angular.module('bible', []);
// Load the Books
bible.controller('listController', ['$scope', '$http', function($scope, $http) {
$http.get('books.json').success(function(data) {
$scope.books = data
});
}]);
bible.controller('displayController', function($scope) {
$scope.test = "TEST TEXT";
});
html로
<div class="row">
<div class="col-md-12" ng-controller="listController">
<table class="table">
<thead>
<th>Testament</th>
<th>Title</th>
<th>Chapters</th>
</thead>
<tbody>
<tr ng-repeat="book in books">
<td>{{book.testament}}</td>
<td><a href="#" ng-click="displayController">{{book.title}}</a></td>
<td>{{book.chapters}}</td>
</tr>
</tbody>
</table>
<div class="display-book" ng-controller="displayController">
{{test}}
</div>
</div>
</div>
나는 이것이 당신이 그것을하기로되어있는 방식이 아니라고 생각합니다. 'ngClick' 안에있는 것이 무엇이든간에, 메인 컨트롤러의'$ scope' 내부에 있어야합니다, 당신의 경우에는'listController'입니다. 이걸로 무엇을 이루려고합니까? –