微信小程序的picker 在手机上调试点击不出现选择项,选择项是从数据库加载出来了,在开发工具可以显示。
不知道是不是代码写错还是其他原因。
测试手机是红米note2 ,微信基础库版本 1.4.0
wxml:
<view class=“weui-cell__bd”>
<picker bindchange=“bindSemesterNameChange” value="{{semesterNameList[index].SemesterId}}" range="{{array}}" name=“semesterId”>
<view class=“weui-select weui-select_in-select-after”>{{semesterNameList[index].SemesterName}}</view>
</picker>
</view>
js:读取数据
data: {
semesterNameList: ‘’,
array: ‘’,
index: ‘0’
},
onLoad: function (options) {
wx.showLoading({
title: ‘加载中’,
})
var that = this;
GetSemesterList(that);
},
赋值
onReady: function () {
var that = this;
GetPickerSemester(that);
},
bindSemesterNameChange: function (e) {
this.setData({
index: e.detail.value
})
}