你可以在你的应用程序的主模块中给Ionic一个配置对象(假设是Angular)。
import { IonicModule } from '@ionic/angular';
@NgModule({
...
imports: [
BrowserModule,
IonicModule.forRoot({
backButtonText: '' // Set an empty string to have no text next to the back icon
}),
AppRoutingModule
],
...
})
完整的文档。https:/ionicframework.comdocsangularconfig#global-config。