我使用 js 中的data 赋值 ,然后页面进行渲染 出现取不到值的问题,但是没有报错.这是为什么?
这是js中data中赋的值
selectvalue: [‘t1’, ‘t2’],
这里是wxml中的运用(部分效果没有给出,太多了wxss)
<view>当前选中的滚动框的值:{{changeValue}}</view>
<view class=“cu-modal bottom-modal {{modalName==‘bottomModal’?‘show’:’’}}”>
<view class=“cu-dialog”>
<view class=“cu-bar bg-white”>
<view class=‘action text-green’ bindtap=‘hideModal’ style=‘font-size:32rpx;padding-left:20rpx;’>取消</view>
<view class=‘action’ style=‘font-size:32rpx;padding-left:20rpx;’>值对应名称</view>
<view class=‘action text-blue’ bindtap=‘confirmEnterprise’ style=‘font-size:32rpx;’>确定</view>
</view>
<picker-view indicator-style=“height: 50px;” style=“width: 100%; height: 200px;” bindchange=“changeview”>
<picker-view-column>
<view wx:for="{{selectvalue}}" style=“line-height: 50px” >{{item}}</view>
</picker-view-column>
</picker-view>
</view>
</view>
<view>