跳至主要内容
版本: v8

配置

Ionic 配置提供了一种方法,可以在整个应用程序中全局更改组件的属性。它可以设置应用程序模式、选项卡按钮布局、动画等等。

全局配置

可以在 IonicConfig 接口中找到可用的配置键。

以下示例禁用波纹效果并将默认模式设置为 Material Design

example.js
window.Ionic = {
config: {
rippleEffect: false,
mode: 'md',
},
};

每个组件配置

Ionic 配置不是响应式的。在组件呈现后更新配置的值会导致使用先前值。如果需要响应式值,建议使用组件的属性而不是更新配置。

不建议

window.Ionic = {
config: {
// Not recommended when your app requires reactive values
backButtonText: 'Go Back',
},
};

建议

<ion-back-button></ion-back-button>

<script>
const backButton = document.querySelector('ion-back-button');

/**
* The back button text can be updated
* anytime the locale changes.
*/
backButton.text = 'Go Back';
</script>

每个平台配置

Ionic 配置也可以在每个平台的基础上进行设置。例如,这允许您在应用程序在可能较慢的设备的浏览器中运行时禁用动画。开发人员可以利用 Platform 实用程序来实现这一点。

在以下示例中,我们仅在应用程序在移动 Web 浏览器中运行时才在 Ionic 应用程序中禁用所有动画。

注意

由于配置是在运行时设置的,因此您将无法访问 Platform 依赖注入。相反,您可以直接使用提供程序使用的底层函数。

查看 Angular 平台文档 以了解您可以检测到的平台类型。

app.module.ts
import { isPlatform, IonicModule } from '@ionic/angular';

@NgModule({
...
imports: [
IonicModule.forRoot({
animated: !isPlatform('mobileweb')
})
],
...
})

回退

以下示例允许您根据平台设置完全不同的配置,如果没有任何平台匹配,则回退到默认配置

app.module.ts
import { isPlatform, IonicModule } from '@ionic/angular';

const getConfig = () => {
let config = {
animated: false
};

if (isPlatform('iphone')) {
config = {
...config,
backButtonText: 'Previous'
}
}

return config;
}
@NgModule({
...
imports: [
IonicModule.forRoot(getConfig())
],
...
});

覆盖

此最终示例允许您根据不同的平台要求累积配置对象。

app.module.ts
import { isPlatform, IonicModule } from '@ionic/angular';

const getConfig = () => {
if (isPlatform('hybrid')) {
return {
tabButtonLayout: 'label-hide'
}
}

return {
tabButtonLayout: 'icon-top'
};
}
@NgModule({
...
imports: [
IonicModule.forRoot(getConfig())
],
...
});

读取配置 (Angular)

Ionic Angular 提供了一个 Config 提供程序来访问 Ionic 配置。

get

描述将配置值作为 any 返回。如果配置未定义,则返回 null
签名get(key: string, fallback?: any) => any

示例

import { Config } from '@ionic/angular';

@Component(...)
class AppComponent {
constructor(config: Config) {
const mode = config.get('mode');
}
}

getBoolean

描述将配置值作为 boolean 返回。如果配置未定义,则返回 false
签名getBoolean(key: string, fallback?: boolean) => boolean

示例

import { Config } from '@ionic/angular';

@Component(...)
class AppComponent {
constructor(config: Config) {
const swipeBackEnabled = config.getBoolean('swipeBackEnabled');
}
}

getNumber

描述将配置值作为 number 返回。如果配置未定义,则返回 0
签名getNumber(key: string, fallback?: number) => number

接口

IonicConfig

以下是 Ionic 使用的配置选项。

配置类型描述
actionSheetEnterAnimationBuilder为所有 ion-action-sheet 提供自定义进入动画,覆盖默认的 "animation"。
actionSheetLeaveAnimationBuilder为所有 ion-action-sheet 提供自定义离开动画,覆盖默认的 "animation"。
alertEnterAnimationBuilder为所有 ion-alert 提供自定义进入动画,覆盖默认的 "animation"。
alertLeaveAnimationBuilder为所有 ion-alert 提供自定义离开动画,覆盖默认的 "animation"。
animatedboolean如果为 true,Ionic 将在整个应用程序中启用所有动画和过渡。
backButtonDefaultHrefstring覆盖所有 <ion-back-button> 组件中 defaultHref 属性的默认值。
backButtonIconstring覆盖所有 <ion-back-button> 组件中的默认图标。
backButtonTextstring覆盖所有 <ion-back-button> 组件中的默认文本。
innerHTMLTemplatesEnabledboolean相关组件:ion-alertion-infinite-scroll-contention-loadingion-refresher-contention-toast。如果为 true,传递给相关组件的内容将被解析为 HTML 而不是纯文本。默认为 false
hardwareBackButtonboolean如果为 true,Ionic 将响应 Android 设备中的硬件返回按钮。
infiniteLoadingSpinnerSpinnerTypes覆盖所有 <ion-infinite-scroll-content> 组件中的默认微调器类型。
loadingEnterAnimationBuilder为所有 ion-loading 提供自定义进入动画,覆盖默认的 "animation"。
loadingLeaveAnimationBuilder为所有 ion-loading 提供自定义离开动画,覆盖默认的 "animation"。
loadingSpinnerSpinnerTypes覆盖所有 ion-loading 覆盖层中的默认微调器。
menuIconstring覆盖所有 <ion-menu-button> 组件中的默认图标。
menuTypestring覆盖所有 <ion-menu> 组件中的默认菜单类型。
modalEnterAnimationBuilder为所有 ion-modal 提供自定义进入动画,覆盖默认的 "animation"。
modalLeaveAnimationBuilder为所有 ion-modal 提供自定义离开动画,覆盖默认的 "animation"。
modeMode模式决定了为整个应用程序使用哪些平台样式。
navAnimationAnimationBuilder覆盖整个应用程序中所有 ion-navion-router-outlet 的默认 "animation"。
pickerEnterAnimationBuilder为所有 ion-picker 提供自定义进入动画,覆盖默认的 "animation"。
pickerLeaveAnimationBuilder为所有 ion-picker 提供自定义离开动画,覆盖默认的 "animation"。
platformPlatformConfig覆盖默认的平台检测方法。
popoverEnterAnimationBuilder为所有 ion-popover 提供自定义进入动画,覆盖默认的 "animation"。
popoverLeaveAnimationBuilder为所有 ion-popover 提供自定义离开动画,覆盖默认的 "animation"。
refreshingIconstring覆盖所有 <ion-refresh-content> 组件中的默认图标。
refreshingSpinnerSpinnerTypes覆盖所有 <ion-refresh-content> 组件中的默认微调器类型。
rippleEffectboolean如果为 true,将整个应用程序中启用 Material Design 波纹效果。
sanitizerEnabledboolean如果为 true,Ionic 将在接受自定义 HTML 的组件属性上启用基本的 DOM 净化器。
spinnerSpinnerTypes覆盖所有 <ion-spinner> 组件中的默认微调器。
statusTapboolean如果为 true,点击或轻触状态栏将导致内容滚动到顶部。
swipeBackEnabledboolean如果设置为 true,Ionic 将在整个应用程序中启用“滑动返回”手势。
tabButtonLayoutTabButtonLayout覆盖整个应用程序中所有 ion-bar-button 的默认“布局”。
toastDuration数字覆盖所有 ion-toast 组件的默认 duration
toastEnterAnimationBuilder为所有 ion-toast 提供自定义进入动画,覆盖默认的“动画”。
toastLeaveAnimationBuilder为所有 ion-toast 提供自定义离开动画,覆盖默认的“动画”。
toggleOnOffLabelsboolean覆盖所有 ion-toggle 组件中的默认 enableOnOffLabels
experimentalCloseWatcherboolean实验性:如果设置为 true,则将使用 CloseWatcher API 来处理所有 Escape 键和硬件后退按钮按下以关闭菜单和覆盖层以及进行导航。请注意,hardwareBackButton 配置选项也必须设置为 true
focusManagerPriorityFocusManagerPriority[]实验性:定义后,Ionic 将在每次页面转换后将焦点移动到相应的元素。这确保了依赖辅助技术的用户在页面转换发生时得到通知。默认情况下禁用。