flex page height 100% 仍会上下滚动
iOS下才有这个问题,Android下不会。
wxml包含header、body、footer三段,其中body是scroll-view:
<view class=“page-header”>…
<scroll-view class=“page-body”>…
<view class=“page-footer”>…
wxss:
page{
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
body的内容可以上下滚动,但滚动到底时,继续滚会导致整个页面上滚,导致首尾不该滚动的部分滚动了: