我需要在执行一个函数后隐藏后退按钮,就像我需要隐藏一个按钮被点击一样
<ion-navbar hideBackbutton="hide" >
<ion-title>Milk Report</ion-title>
</ion-navbar>
<button (click)="hideBackButton()"> button </button>
在我的.ts文件中
export class MilkPage {
hide: boolean = false;}
hideBackButton(){
this.hide = true;
}
这对我不起作用,有人可以分享我正确的方法来隐藏按钮
答案 0 :(得分:1)
其中任何一个都应该有效:
ion-navbar
但是如果由于某种原因hideBackButton
组件仍然没有看到更改(可能只需要<ion-navbar *ngIf="hide" hideBackButton>
<ion-title>Milk Report</ion-title>
</ion-navbar>
<ion-navbar *ngIf="!hide">
<ion-title>Milk Report</ion-title>
</ion-navbar>
属性可以工作),您可能只需执行以下操作:
#!/bin/bash
FILES=$(find /home/mattia/test/ -type f -name '*.*')
for f in $FILES
do
ext=${f#*.}
echo $ext
if [[ "$ext" != "mp4" || "$ext" != "mkv" || "$ext" != "avi" ]]; then
rm -f $f
echo deleted
fi
done
答案 1 :(得分:0)
<button ng-click="hideBackButton();showBtn=false;" ng-show="showBtn"> button </button>