微信小程序picker和range-key的用法

<picker bindchange="bindPickerChange" value="{{index}}" range="{{location}}" range-key="{{'name'}}">
   <view class="picker">
	地州{{location[index]}}
   </view>
</picker>

range-key用於渲染picker的源是數組的情形,range-key制定了須要picker展現的內容。index是系統自動指定的array的下標,不用修改。html

對應的數組內容以下:json

[{
        "id": "XM4xZnN088X5",
        "name": "西雙版納州"
  }, {
        "id": "yrw6F6n30igs",
        "name": "昆明市"
}]

注意range-key中的字段須要單引號指定。數組

相關文章
相關標籤/搜索