我找到了解决方案,你需要创建这个变量。
const pageRef = useRef<HTMLElement>(null);
然后在模式中设置模式属性='ios'。
在你当前的页面上写上这个参考文献
<IonPage ref={pageRef} >
...
...
最后一步是在模态属性中放上这句话。
presentingElement={pageRef.current!}
更多信息在这里https:/ionicframework.comdocsapimodal#swipeable-modals。