收藏
回答

请问这个位置为啥没法选定啊?

AppID
wx2a43d4e37d622949

回答关注问题邀请回答
收藏

4 个回答

  • 墨啡是你[咖啡]🧋
    墨啡是你[咖啡]🧋
    1天前

    啊 好复杂 不会

    1天前
    有用
    回复
  • 那一抹笑😃 穿透阳光
    那一抹笑😃 穿透阳光
    1天前

    因为你代码有问题

    1天前
    有用
    回复
  • showms
    showms
    2天前

    好歹代码贴出来看下呀

    2天前
    有用
    回复
  • 正青春
    正青春
    2天前

    检查一下,看下文档:https://developers.weixin.qq.com/miniprogram/dev/component/picker.html

    <view class="section">
      <view class="section__title">省市区选择器</view>
      <picker mode="region" bindchange="bindRegionChange" value="{{region}}" custom-item="{{customItem}}">
        <view class="picker">
          当前选择:{{region[0]}},{{region[1]}},{{region[2]}}
        </view>
      </picker>
    </view>
    
    bindRegionChange: function (e) {
        console.log('picker发送选择改变,携带值为', e.detail.value)
        this.setData({
          region: e.detail.value
        })
      }
    


    2天前
    有用
    回复
登录 后发表内容