Solutions applet scroll-view of bindscroll on a real machine does not trigger?

Recently doing a chat room when he met a problem, it is a small program scroll-view of bindscroll normal trigger on the simulator, but not executed on the real machine?

Direct talk about my solution

1  < - original document structure -! > 
2  < Scroll-View bindscroll = "scrollHandle" > 
. 3      < View class = "Item" > </ View > 
. 4      < View class = "Item" > </ View > 
. 5      < View class = "Item" > </ View > 
. 6  </ Scroll-View > 
. 7  
. 8  < - document modified structure -! > 
9  <scroll-view bindscroll="scrollHandle">
10    <view>
11         <view class="item"></view>
12         <view class="item"></view>
13         <view class="item"></view>
14     </view>
15 </scroll-view>
16     

Then the problem is solved.

 

Hopefully this article can help to you!

Guess you like

Origin www.cnblogs.com/helena000/p/12579378.html