gpt4 book ai didi

angular - 在 Ionic 2 中隐藏子页面中的选项卡

转载 作者:行者123 更新时间:2023-12-02 14:12:32 27 4
gpt4 key购买 nike

我尝试隐藏应用程序中所有子页面上的选项卡。我用这个:

<ion-tab [root]="MyPage" tabsHideOnSubPages="true" ...></ion-tab>

当我运行 ionic 服务时;是工作。但是当我尝试在我的设备上运行它时,我的选项卡没有隐藏在子页面中,并且我无法使用它。

有人有办法最终在我的设备中隐藏我的标签吗?

[更新]在我的子页面中,我有一个谷歌地图。如果我删除它,我的问题就不再存在了。

子页面.html:

<ion-header>
<c-header></c-header>
</ion-header>

<ion-content>
<div id="map"></div>
</ion-content>

子页面.css:

#map {
height: 50%;
}

子页面.ts:

import { Component } from '@angular/core';
import { NavController, Platform } from 'ionic-angular';
import { GoogleMap, GoogleMapsEvent, GoogleMapsLatLng } from 'ionic-native';

/*
Generated class for the DetailsMedicalEvent page.

See http://ionicframework.com/docs/v2/components/#navigation for more info on
Ionic pages and navigation.
*/
@Component({
selector: 'page-details-medical-event',
templateUrl: 'details-medical-event.html'
})
export class DetailsMedicalEventPage {

map: GoogleMap;

constructor(public navCtrl: NavController, public platform: Platform) {
platform.ready().then(() => {
this.loadMap();
});
}

loadMap(){

let location = new GoogleMapsLatLng(-34.9290,138.6010);

this.map = new GoogleMap('map', {
'backgroundColor': 'white',
'controls': {
'compass': true,
'myLocationButton': true,
'indoorPicker': true,
'zoom': true
},
'gestures': {
'scroll': true,
'tilt': true,
'rotate': true,
'zoom': true
},
'camera': {
'latLng': location,
'tilt': 30,
'zoom': 15,
'bearing': 50
}
});

this.map.on(GoogleMapsEvent.MAP_READY).subscribe(() => {
console.log('Map is ready!');
});
}
}

我真的需要一张 map 。有人已经遇到这个问题了吗?

最佳答案

您还可以尝试在 app.module.ts 文件中设置 tabsHideOnSubPages 配置属性,如下所示:

... 
imports: [
IonicModule.forRoot(MyApp, {
// Tabs config
tabsHideOnSubPages: true,
...
})
]
...
<小时/>

来自Ionic docs :

tabsHideOnSubPages: boolean

Whether to hide the tabs on child pages or not. If true it will not show the tabs on child pages.

关于angular - 在 Ionic 2 中隐藏子页面中的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48136814/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com