从 Ionic 5 更新到 6
¥Updating from Ionic 5 to 6
本指南假设你已经将应用更新到最新版本的 Ionic 5。在开始本指南之前,请确保你已遵循 更新到 Ionic 5 指南。
¥This guide assumes that you have already updated your app to the latest version of Ionic 5. Make sure you have followed the Updating to Ionic 5 Guide before starting this guide.
有关从 Ionic 5 到 Ionic 6 的重大更改的完整列表,请参阅 Ionic 框架存储库中的 重大变更文档。
¥For a complete list of breaking changes from Ionic 5 to Ionic 6, please refer to the breaking changes document in the Ionic Framework repository.
新手上路
¥Getting Started
Angular
-
Ionic 6 支持 Angular 12+。按照 角度更新指南 更新到最新版本的 Angular。
¥Ionic 6 supports Angular 12+. Update to the latest version of Angular by following the Angular Update Guide.
-
更新到最新版本的 Ionic 6:
¥Update to the latest version of Ionic 6:
npm install @ionic/angular@6
如果你使用的是 Ionic Angular Server,请务必也进行更新:
¥If you are using Ionic Angular Server, be sure to update that as well:
npm install @ionic/angular@6 @ionic/angular-server@6
-
删除
Config.set()
的任何使用。相反,请在IonicModule.forRoot()
中设置你的配置。有关更多示例,请参阅 角度配置文档。¥Remove any usage of
Config.set()
. Instead, set your config inIonicModule.forRoot()
. See the Angular Config Documentation for more examples. -
删除先前从
@ionic/angular
导出的setupConfig
函数的任何使用。请改为在IonicModule.forRoot()
中设置你的配置。¥Remove any usage of the
setupConfig
function previously exported from@ionic/angular
. Set your config inIonicModule.forRoot()
instead.
React
-
Ionic 6 支持 React 17+。更新到最新版本的 React:
¥Ionic 6 supports React 17+. Update to the latest version of React:
npm install react@latest react-dom@latest
-
更新到最新版本的 Ionic 6:
¥Update to the latest version of Ionic 6:
npm install @ionic/react@6 @ionic/react-router@6
-
更新
package.json
的scripts
对象中的test
字段以包含transformIgnorePatterns
:¥Update the
test
field in thescripts
object of yourpackage.json
to includetransformIgnorePatterns
:
"scripts": {
"test": "react-scripts test --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
...
}
-
在
App
组件文件中导入并调用setupIonicReact
。如果你也使用setupConfig
,请将你的配置传递给setupIonicReact
:¥Import and call
setupIonicReact
in yourApp
component file. If you are also usingsetupConfig
, pass your config tosetupIonicReact
instead:
前
¥Before
import { setupConfig } from '@ionic/react';
...
setupConfig({
mode: 'md'
});
后
¥After
import { setupIonicReact } from '@ionic/react';
...
setupIonicReact({
mode: 'md'
});
即使开发者没有设置自定义配置,也必须导入并调用 setupIonicReact
。
¥Developers must import and call setupIonicReact
even if they are not setting custom config.
有关更多示例,请参阅 React 配置文档。
¥See the React Config Documentation for more examples.
-
将所有控制器导入从
@ionic/core
更新到@ionic/core/components
。作为示例,以下是menuController
的迁移:¥Update all controller imports from
@ionic/core
to@ionic/core/components
. As an example, here is a migration formenuController
:
前
¥Before
import { menuController } from '@ionic/core';
后
¥After
import { menuController } from '@ionic/core/components';
Vue
-
Ionic 6 支持 Vue 3.0.6+。更新到最新版本的 Vue:
¥Ionic 6 supports Vue 3.0.6+. Update to the latest version of Vue:
npm install vue@3 vue-router@4
-
对于使用 Vue CLI 的应用,请安装 Vue CLI 5:
¥For apps that use the Vue CLI, install Vue CLI 5:
npm install -g @vue/cli@next
然后,升级所有 Vue CLI 插件:
¥Then, upgrade all Vue CLI plugins:
vue upgrade --next
-
更新到最新版本的 Ionic 6:
¥Update to the latest version of Ionic 6:
npm install @ionic/vue@6 @ionic/vue-router@6
-
将以下
transformIgnorePatterns
添加到package.json
中的jest.config.js
或jest
字段:¥Add the following
transformIgnorePatterns
to eitherjest.config.js
or thejest
field inpackage.json
:
module.exports = {
...
transformIgnorePatterns: ['/node_modules/(?!@ionic/vue|@ionic/vue-router|@ionic/core|@stencil/core|ionicons)']
}
{
...
"jest": {
"transformIgnorePatterns": ["/node_modules/(?!@ionic/vue|@ionic/vue-router|@ionic/core|@stencil/core|ionicons)"]
}
}
请参阅 下面的测试部分 了解更多信息。
¥See the Testing section below for more information.
-
删除先前从
@ionic/vue
导出的setupConfig
函数的任何使用。在安装IonicVue
插件时设置你的配置。有关更多示例,请参阅 Vue 配置文档。¥Remove any usage of the
setupConfig
function previously exported from@ionic/vue
. Set your config when installing theIonicVue
plugin instead. See the Vue Config Documentation for more examples. -
将
useIonRouter
的IonRouter
类型重命名为UseIonRouterResult
。¥Rename the
IonRouter
type foruseIonRouter
toUseIonRouterResult
. -
将
useKeyboard
的IonKeyboardRef
类型重命名为UseKeyboardResult
。¥Rename the
IonKeyboardRef
type foruseKeyboard
toUseKeyboardResult
. -
重命名任何覆盖事件监听器以使用新格式:
¥Rename any overlay event listeners to use the new format:
前
¥Before
<ion-modal
:is-open="modalOpenRef"
@onWillPresent="onModalWillPresentHandler"
@onDidPresent="onModalDidPresentHandler"
@onWillDismiss="onModalWillDismissHandler"
@onDidDismiss="onModalDidDismissHandler"
>
...
</ion-modal>
后
¥After
<ion-modal
:is-open="modalOpenRef"
@willPresent="onModalWillPresentHandler"
@didPresent="onModalDidPresentHandler"
@willDismiss="onModalWillDismissHandler"
@didDismiss="onModalDidDismissHandler"
>
...
</ion-modal>
这适用于 ion-action-sheet
、ion-alert
、ion-loading
、ion-modal
、ion-picker
、ion-popover
和 ion-toast
。
¥This applies to ion-action-sheet
, ion-alert
, ion-loading
, ion-modal
, ion-picker
, ion-popover
, and ion-toast
.
-
将
ion-router-outlet
传递到正在使用的任何ion-tabs
中:¥Pass in an
ion-router-outlet
into anyion-tabs
that are being used:
前
¥Before
<ion-tabs>
<ion-tab-bar slot="bottom"> ... </ion-tab-bar>
</ion-tabs>
<script>
import { IonTabs, IonTabBar } from '@ionic/vue';
import { defineComponent } from 'vue';
export default defineComponent({
components: { IonTabs, IonTabBar },
});
</script>
后
¥After
<ion-tabs>
<ion-router-outlet></ion-router-outlet>
<ion-tab-bar slot="bottom"> ... </ion-tab-bar>
</ion-tabs>
<script>
import { IonTabs, IonTabBar, IonRouterOutlet } from '@ionic/vue';
import { defineComponent } from 'vue';
export default defineComponent({
components: { IonTabs, IonTabBar, IonRouterOutlet },
});
</script>
-
选项卡内的其他路由应重写为同级路由而不是子路由:
¥Additional routes inside of tabs should be re-written as sibling routes instead of child routes:
前
¥Before
const routes: Array<RouteRecordRaw> = [
{
path: '/',
redirect: '/tabs/tab1'
},
{
path: '/tabs/',
component: Tabs,
children: [
{
path: '',
redirect: 'tab1'
},
{
path: 'tab1',
component: () => import('@/views/Tab1.vue'),
children: {
{
path: 'view',
component: () => import('@/views/Tab1View.vue')
}
}
},
{
path: 'tab2',
component: () => import('@/views/Tab2.vue')
},
{
path: 'tab3',
component: () => import('@/views/Tab3.vue')
}
]
}
]
后
¥After
const routes: Array<RouteRecordRaw> = [
{
path: '/',
redirect: '/tabs/tab1',
},
{
path: '/tabs/',
component: Tabs,
children: [
{
path: '',
redirect: 'tab1',
},
{
path: 'tab1',
component: () => import('@/views/Tab1.vue'),
},
{
path: 'tab1/view',
component: () => import('@/views/Tab1View.vue'),
},
{
path: 'tab2',
component: () => import('@/views/Tab2.vue'),
},
{
path: 'tab3',
component: () => import('@/views/Tab3.vue'),
},
],
},
];
核心
¥Core
-
更新到最新版本的 Ionic 6:
¥Update to the latest version of Ionic 6:
npm install @ionic/core@6
更新你的代码
¥Updating Your Code