角度 – 按下按钮时Ionic2关闭fab菜单

前端之家收集整理的这篇文章主要介绍了角度 – 按下按钮时Ionic2关闭fab菜单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果按下菜单中的按钮,如何关闭打开的FAB菜单

这是我的按钮.

<ion-fab bottom center >
<button ion-fab><b>Hello</b></button>
<ion-fab-list side="top">
<button ion-fab (click)="refresh()"><ion-icon name="refresh"></ion-icon></button>

我需要添加什么来刷新以使整个FAB关闭
我可以以某种方式从代码中引用html对象吗?类似于iOS处理它的出口的方式?

只需将#fab添加到ion-fab标签
<ion-fab bottom center #fab>
    <button ion-fab (click)="refresh(fab)"> 
        <ion-icon name="refresh"></ion-icon>       
    </button>
</ion-fab>

并使用FabContainer方法close()关闭FAB按钮调用的任何函数开头的FAB菜单(如果打开),例如:

import { FabContainer } from 'ionic-angular';

// remember to pass the fab from client side
refresh(fab?: FabContainer):void {
    if (fab !== undefined) {
      fab.close();
    }
    (other function stuff...)
}
原文链接:https://www.f2er.com/angularjs/140376.html

猜你在找的Angularjs相关文章