离子:从主人到孩子继承内容

时间:2015-05-08 04:50:19

标签: javascript angularjs ionic

我正在尝试将 blog.html (卡片列表)中的博客内容继承到 news.html (单卡)。我似乎无法让它工作。这是我的配置:

app.js

.controller('BlogCtrl', function($scope, $state, Posts) {

 $scope.blogs = [];
 Posts.success(function(response) { 
 var posts = response;
 $scope.blogs = posts;
})

.state('app.news', {
url: "/news/:index",
views: {
  'menuContent': {
    templateUrl: "templates/news.html"
  }
}})

BlogCtrl.js

$scope.monitor = function(index){
 $state.go('app.news',{ index: index });
};

blog.html

<div ng-controller="BlogCtrl">
      <div ng-repeat="blog in blogs | orderBy:'-created_at'" ng-click="monitor($index)">
         <h4 class="title">{{blog.title}} </h4>
      </div>
</div>

news.html

<ion-view view-title="{{blog.title}}">
 <ion-content>

   <div class="list card">
    <div class="item">
     <h3 ng-bind="{{blog.title}}"></h3>
     <p ng-bind="{{blog.created_at}}"></p>
    </div>

    <div class="item item-body">
      <img class="full-image" ng-src="{{blog.img}}">
      <div ng-bind="{{blog.text}}"></div>
    </div>

  </div>
 </ion-content>
</ion-view>

0 个答案:

没有答案