离子框架 view-title 未显示

ionic framework view-title not show

我是离子框架新手。我的数据来自 sqlite 结果。我可以先获取数据这是我的数据结果,例如:

{title: "Test Title", content: "<p>Test hello</p>"}

这是我的控制器

.controller('TestDetailCtrl', function($scope, $sce, $stateParams, SQLService) {

  var content = '';
  SQLService.get_one($stateParams.testId).then(function(res) {
    content = res[0];
    var test_data = {
      title: content.title,
      content: $sce.trustAsHtml(content.content)
    };

    $scope.test = test_data
  });
})

还有我的看法

<ion-view view-title="{{test.title}}">
  <ion-content class="padding">
    {{test}}
    <div ng-bind-html="test.content">{{test.content}}</div>
  </ion-content>
</ion-view>

我可以输出html的内容,但是我的标题不显示,我尝试输出测试数据,我发现测试的内容键是空的。我不知道。谢谢你的帮助。

我尝试使用 ion-nav-title,它的工作。因为我的标题是动态的。

<ion-view>
  <ion-nav-title>{{test.title}}</ion-nav-title>
  <ion-content class="padding">
    {{test}}
    <div ng-bind-html="test.content">{{test.content}}</div>
  </ion-content>
</ion-view>