当前位置: 代码迷 >> 综合 >> uniapp picker 定义 range-key
  详细解决方案

uniapp picker 定义 range-key

热度:81   发布时间:2023-11-11 08:07:50.0
<picker @change="bindPickerChange" :value="index" :range="array" :range-key="'text'"><view class="uni-input">选择回看时间:{
   {array[index].start}}---{
   {array[index].end}}</view>
</picker>
 array: [{id:"1",text:"2020年  5月 18日18时:52分:3秒   -------------   2020年  5月 18日18时:52分:3秒",start:"2020年  5月 18日18时:52分:3秒",end:"2020年  5月 21日18时:52分:3秒"
},{id:"2",text:"2020年  5月 18日18时:52分:3秒   -------------   2020年  5月 18日18时:52分:3秒",start:"2020年  5月 18日18时:52分:3秒",end:"2020年  5月 21日18时:52分:3秒"
}}

问题::range-key="text"绑定之后没有反应 选择器显示[object,object]。

解决:绑定的应该是一个字符串所以应该添加   ‘    ’    ,所以写法应该是:range-key="'text'"

 

  相关解决方案