我有一組離子框架標籤的這放映電影的列表:通變到離子框架頁(基於AngularJS)
<script id="tabs.html" type="text/ng-template">
<ion-tabs tabs-style="tabs-icon-top" tabs-type="tabs-positive">
<ion-tab title="Movies" icon="ion-film-marker" href="#/tab/movies">
<ion-nav-view name="movies-tab"></ion-nav-view>
</ion-tab>
</ion-tabs>
</script>
<script id="movies.html" type="text/ng-template">
<ion-view title="'Movies'">
<ion-content has-header="true" padding="false">
<div class="list">
<a ng-repeat="item in movies" href="#/tab/movies/{{item.id}}" class="item item-thumbnail-left item-text-wrap">
<img ng-src="{{ item.image }}">
<h2>{{ item.title }}</h2>
<h4>{{ item.desc }}</h4>
</a>
</div>
</ion-content>
</ion-view>
</script>
每個列表中的項目被鏈接到#/tab/movies/{{item.id}}
,爲例如,#/tab/movies/27
。我的電影在CONTROLER
.controller('MyCtrl', function($scope) {
$scope.movies = [
{ id: 1, title: '12 Rounds', desc: 'Detective Danny Fisher discovers his girlfriend has been kidnapped by a ex-con tied to Fisher\'s past, and he\'ll have to successfully complete 12 challenges in order to secure her safe release.', image: ''}
];
我的網頁被路由定義如下:
.config(function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('tabs', {
url: "/tab",
abstract: true,
templateUrl: "tabs.html"
})
.state('tabs.movies', {
url: "/movies",
views: {
'movies-tab': {
templateUrl: "movies.html",
controller: 'MyCtrl'
}
}
})
$urlRouterProvider.otherwise("/tab/movies");
})
我現在要做的就是點擊上面的列表上的每個項目時,它需要它的自己的頁面,#/tab/movies/{{item.id}}
,我可以在其中顯示諸如item.title
或item.image
之類的內容,以及後退按鈕以進入列表。
爲了做到這一點,從我所知道的,我需要創建一個空白ng-template
與信息的佔位符,然後一些如何傳遞這個信息,當它點擊,但我不知道如何做這個。