小程序
小游戏
企业微信
微信支付
扫描小程序码分享
定时器开启,选择地址,省,市都可以联动,当选到区的时候 会报错
Wed Feb 20 2019 10:27:25 GMT+0800 (中国标准时间) 渲染层错误
VM1497:5 TypeError: Cannot read property 'code' of undefined
(anonymous) @ VM1497:5
定时器结束后,恢复正常
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我是使用mpvue写的,不知道如何生成代码片段
区域的代码
<view class="cellRight">
<picker mode="region" @change="bindRegionChange" :value="region" :custom-item="customItem">
<view class="picker">
{{addressName}}<i class="iconfont icon-search-1-copy btnIcon"></i>
</view>
</picker>
验证码
<view class="cellLeft">手机验证</view>
<view class="cellRight80" style="width:70%;">
<input type="number" class="cellText100" v-model="verificationCode" style="margin-right:5px;width:200px;" placeholder="请填写"/>
<view class="cellRight" @tap="isClick && gainCode()" style="width:31%;border-left:1px solid;">
{{time}}
触发方法
gainCode: function () {
let _this=this;
if(!this.isClick){
return;
}
_this.isClick = false;
let times = 60*2; // 2分钟 用于倒计时
_this.time = times + 's';
let interval = setInterval(function () {
times--;
if (times < 0) {
_this.time = '重新获取';
_this.isClick = true;
clearInterval(interval);
}, 1000)
let aaa = setInterval(function () {
clearInterval(aaa);
就是简单的定时器
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
我是使用mpvue写的,不知道如何生成代码片段
区域的代码
<view class="cellRight">
<picker mode="region" @change="bindRegionChange" :value="region" :custom-item="customItem">
<view class="picker">
{{addressName}}<i class="iconfont icon-search-1-copy btnIcon"></i>
</view>
</picker>
</view>
验证码
<view class="cellLeft">手机验证</view>
<view class="cellRight80" style="width:70%;">
<input type="number" class="cellText100" v-model="verificationCode" style="margin-right:5px;width:200px;" placeholder="请填写"/>
<view class="cellRight" @tap="isClick && gainCode()" style="width:31%;border-left:1px solid;">
{{time}}
</view>
</view>
触发方法
gainCode: function () {
let _this=this;
if(!this.isClick){
return;
}
_this.isClick = false;
let times = 60*2; // 2分钟 用于倒计时
_this.time = times + 's';
let interval = setInterval(function () {
times--;
_this.time = times + 's';
if (times < 0) {
_this.time = '重新获取';
_this.isClick = true;
clearInterval(interval);
}
}, 1000)
}
let times = 60*2; // 2分钟 用于倒计时
_this.time = times + 's';
let aaa = setInterval(function () {
times--;
_this.time = times + 's';
if (times < 0) {
_this.time = '重新获取';
_this.isClick = true;
clearInterval(aaa);
}
}, 1000)
就是简单的定时器