我正在尝试使用离子v3 popover。我也实现了相同的。我有一个查询,如果我们在离子3中有popover箭头,就像我们在离子v1中那样。如果是,那么特定的html标签是什么。我们有离子1,但离子v3不支持。 我没有找到。
答案 0 :(得分:5)
请发布更多信息或代码段! Ionic 1使用了AngularJS,因此HTML有点不同,看起来像:
<button ion-button icon-only (click)="presentPopover($event)">
<ion-icon name="more"></ion-icon>
</button>
TS文件如下所示:
import { PopoverController } from 'ionic-angular';
@Component({})
class MyPage {
constructor(public popoverCtrl: PopoverController) {}
presentPopover(myEvent) {
let popover = this.popoverCtrl.create(PopoverPage);
popover.present({
ev: myEvent
});
}
}
来源:https://ionicframework.com/docs/api/components/popover/PopoverController/