因此,朋友們,設置角的基礎使用顯示模式具有角
我試圖使用顯示模式與角度,因爲我有,我想數據注入到基於NG-點擊模式那被NG-重複創建的鏈接,請允許我介紹一些代碼:
<table ng-controller="oflClassCtrl">
<thead>
<tr>
<th>Course Title(Apex/Isis)</th>
</tr>
</thead>
<tbody>
<tr ng-repeat = "selectedClass in classes | filter:searchTxt">
<td><a href="#" data-reveal-id="myModal" ng-click="setClass($index)">{{selectedClass.class}}</a></td>
和控制器:
var oflApp = angular.module('oflApp', []);
oflApp.controller('oflClassCtrl', function ($scope,$http) {
// $http.get('../courses/coursedata.json');
$scope.classes = [
{"class": "ENGLISH I: INTRO TO LITERATURE AND COMPOSITION Sem 2", "href": "../courses/english.php#p1"},
{"class": "ENGLISH II: CRITICAL READING AND EFFECTIVE WRITING Sem 1"},ect,
$scope.setClass = function(index) {
$scope.selectedClass = $scope.classes[index];
};
});
我看過了http://pineconellc.github.io/angular-foundation/但林不河畔我只要下載一個文件並將其鏈接到頭部,然後添加一個新模塊?
我想要做的所有事情是,當用戶點擊將用ng-repeat顯示的相關課程時,我的數據會以揭示模式顯示。我也有一個模板佈局,如果它需要我發佈它,但基本上只是想讓它呈現類信息。
有人可以給我一個簡單的例子,說明如何設置這個PLZ。謝謝。