仅针对特定页面查看关闭黑暗模式。
参考Ionic文档,下面的方法不起作用,文档主体中没有显示暗类。
document.body.classList.toggle('dark', false);
有什么解决方案吗?谢谢
使用应该是可行的
document.body.classList.toggle('dark', false);
以启用黑暗模式。您需要在组件的.ts文件中执行此操作。如果您将Ionic与Angular结合使用。
编辑1:
将您的ionViewDidEnter更改为:
async ionViewDidEnter() {
await this.platform.ready().then(() => {
document.body.classList.toggle('dark', false);
})
}