WeChat applet onReachBottom not triggered

WeChat applet onReachBottom not triggered

The reason is that the height of the page does not exceed 100vh, so it will not be executed.
Just add some code to the wxss in the calling part.

page{
    
    
  height:101vh;
}

Guess you like

Origin blog.csdn.net/ARLENE2/article/details/129438964