私はポップオーバーイオンポップオーバー、TypeError例外:プロパティを読み取ることができません「ショー」
<ion-nav-buttons side="secondary">
<button class="button button-icon icon ion-more" ng-click="openPopover($event)"></button>
</ion-nav-buttons>
を示さなければならないのナビゲーションボタンがあり、これは、コントローラ
.controller('MyController', ['$scope','$ionicPopover', function($scope, $ionicPopover) {
$ionicPopover.fromTemplateUrl('popover.html', {
scope: $scope
}).then(function(popover) {
$scope.popover = popover;
});
$scope.openPopover = function($event) {
$scope.popover.show($event);
};
$scope.closePopover = function() {
$scope.popover.hide();
};
$scope.$on('$destroy', function() {
$scope.popover.remove();
});
}])
ですが、私はNAVをクリックしたとき私はここにTypeError: Cannot read property 'show' of undefined at Scope.$scope.openPopover
に直面しているボタンは、私は同じプロジェクトフォルダ
で持っているテンプレートです<ion-popover-view>
<ion-content>
<div class="list">
<label class="item item-input" ng-click="addFavorite(dish.id)">
<div class="input-label">
Add To Favorites
</div>
</label>
<label class="item item-input" ng-click="openModal()">
<div class="input-label">
Add A Comment
</div>
</label>
</div>
</ion-content>
</ion-popover-view>
約束によってpopoverが正しく返されていますか?あなたのテンプレートは正しいですか? – tpsilva
@ tpsilvaあなたは約束についてもっと詳しく説明できますか?どのように私はpopverがreturendを正しくチェックする必要がありますか?テンプレートは正しいです(公式ドキュメントで提供されているテンプレート) –
あなたのソースフォルダにテンプレートがありますか? – tpsilva