从 Ionic 6 更新到 7
¥Updating from Ionic 6 to 7
本指南假设你已将应用更新到最新版本的 Ionic 6。在开始本指南之前,请确保你已遵循 升级到 Ionic 6 指南。
¥This guide assumes that you have already updated your app to the latest version of Ionic 6. Make sure you have followed the Upgrading to Ionic 6 Guide before starting this guide.
有关从 Ionic 6 到 Ionic 7 的重大更改的完整列表,请参阅 Ionic 框架存储库中的 重大变更文档。
¥For a complete list of breaking changes from Ionic 6 to Ionic 7, please refer to the breaking changes document in the Ionic Framework repository.
新手上路
¥Getting Started
Angular
-
Ionic 7 支持 Angular 14+。按照 角度更新指南 更新到最新版本的 Angular。
¥Ionic 7 supports Angular 14+. Update to the latest version of Angular by following the Angular Update Guide.
-
如果你的项目使用 rxjs,Ionic 7 需要的最低 rxjs 版本为 7.5.0:
¥If your project is using rxjs, Ionic 7 requires a minimum rxjs version of 7.5.0:
npm install rxjs@7.5.0
-
更新到最新版本的 Ionic 7:
¥Update to the latest version of Ionic 7:
npm install @ionic/angular@7
如果你正在使用 Ionic Angular Server 和 Ionic Angular Toolkit,请务必同时更新它们:
¥If you are using Ionic Angular Server and Ionic Angular Toolkit, be sure to update those as well:
npm install @ionic/angular@7 @ionic/angular-server@7 @ionic/angular-toolkit@9
注意:
@ionic/angular-toolkit@9
要求角度至少为 15。如果你仍在使用 Angular 14,那么你可以跳过更新到@ionic/angular-toolkit@9
。¥Note:
@ionic/angular-toolkit@9
requires a minimum of Angular 15. If you are still on Angular 14, then you can skip updating to@ionic/angular-toolkit@9
.
React
-
Ionic 7 支持 React 17+。更新到最新版本的 React:
¥Ionic 7 supports React 17+. Update to the latest version of React:
npm install react@latest react-dom@latest
-
更新到最新版本的 Ionic 7:
¥Update to the latest version of Ionic 7:
npm install @ionic/react@7 @ionic/react-router@7
Vue
-
Ionic 7 支持 Vue 3.0.6+。更新到最新版本的 Vue:
¥Ionic 7 supports Vue 3.0.6+. Update to the latest version of Vue:
npm install vue@latest vue-router@latest
-
更新到最新版本的 Ionic 7:
¥Update to the latest version of Ionic 7:
npm install @ionic/vue@7 @ionic/vue-router@7
核心
¥Core
-
更新到最新版本的 Ionic 7:
¥Update to the latest version of Ionic 7:
npm install @ionic/core@7
更新你的代码
¥Updating Your Code