uniapp android真机调试报错TypeError: Invalid attempt to destructure non-iterable instance

上网查询之后发现是picker标签的原因。开始的代码

			<u-cell-item title="仓库" :value="housetext" >
				<view class="uni-list">
					<view class="uni-list-cell">
						<view class="uni-list-cell-db">
							<picker @change="bindPickerChange" :value="index" :range="houseList" range-key="name">
								<view class="uni-input">{{ houseList[index].name }}</view>
							</picker>
						</view>
					</view>
				</view>
			</u-cell-item>

需要判别houseList && houseList.length>0  ,加上v-if判断, 好了

            <u-cell-item title="仓库" :value="housetext" >
				<view class="uni-list">
					<view class="uni-list-cell">
						<view class="uni-list-cell-db">
							<view v-if="houseList && houseList.length>0">
								<picker @change="bindPickerChange" :value="index" :range="houseList" range-key="name">
									<view class="uni-input">{{ houseList[index].name }}</view>
								</picker>
							</view>
						</view>
					</view>
				</view>
			</u-cell-item>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值