绑定的数据 在 onload 调用云函数更新了绑定数据, 但界面不更新,是什么问题?? 求教
<scroll-view class="course-type-scroll" scroll-x scroll-with-animation="true"
scroll-into-view="item{{activeMenuIndex < 4 ? 0 : activeMenuIndex - 3}}">
<view class="course-type-item" id="item{{index}}"
wx:for="{{coursetype}}" wx:key="index"
data-index="{{index}}" bindtap="courseTypeMenuTap">
<view class="names {{activeMenuIndex === index ? 'active' : ''}}">{{item.courseTypeName}}</view>
<view class="currtline {{activeMenuIndex === index ? 'active' : ''}}"></view>
</view>
</scroll-view>