小程序
小游戏
企业微信
微信支付
扫描小程序码分享
开发者工具:在页面里有两处需要调用chooseLocation组件的地方(通过bindfocus),点击这个组件的input框然后选择地址,窗口关闭。我再去点击其他的没有调用这个组件的input框,这时也会弹出这个组件。
真机:点击普通的input框不会弹出组件,但是会导致最下面的 保存 按钮点击之后没有任何反应。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html,用这个代码片段工具好些
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
部分代码:
<view class="info-cell"> <view>发站地址 : <input data-index="start" bindfocus="location_start" type="text" name="start_address" model:value="{{start_address}}" placeholder="发站地址" /> </view> <view>到站地址 : <input data-index="end" bindfocus="location_end" type="text" name="end_address" model:value="{{end_address}}" placeholder="到站地址" /> </view> </view> <view class="info-cell"> <view>型<text decode="{{true}}" space="{{true}}"> </text>号: <input type="text" name="car_brand_name" model:value="" placeholder="型号"/> </view> </view>
},
// 从地图选点插件返回后,在页面的onShow生命周期函数中能够调用插件接口,取得选点结果对象
onShow () {
const location = chooseLocation.getLocation(); // 如果点击确认选点按钮,则返回选点结果对象,否则返回null
console.log(location,'locaiton');
var s = wx.getStorageSync('select_index');
console.log(s,'----ss')
if(location != null){
if(s == 'start'){
this.setData({start_address:location.address,start_lat:location.latitude,start_lng:location.longitude,start_name:location.name,start_province:location.province,start_city:location.city,
start_district:location.district});
}else if(s == 'end'){
this.setData({end_address:location.address,end_lat:location.latitude,end_lng:location.longitude,end_name:location.name,end_province:location.province,end_city:location.city,
end_district:location.district});
}
console.log(this.data,'this data');
chooseLocation.setLocation(null);
onUnload () {
// 页面卸载时设置插件选点数据为null,防止再次进入页面,geLocation返回的是上次选点结果
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html,用这个代码片段工具好些
部分代码:
<view class="info-cell"> <view>发站地址 : <input data-index="start" bindfocus="location_start" type="text" name="start_address" model:value="{{start_address}}" placeholder="发站地址" /> </view> <view>到站地址 : <input data-index="end" bindfocus="location_end" type="text" name="end_address" model:value="{{end_address}}" placeholder="到站地址" /> </view> </view> <view class="info-cell"> <view>型<text decode="{{true}}" space="{{true}}"> </text>号: <input type="text" name="car_brand_name" model:value="" placeholder="型号"/> </view> </view>
},
// 从地图选点插件返回后,在页面的onShow生命周期函数中能够调用插件接口,取得选点结果对象
onShow () {
const location = chooseLocation.getLocation(); // 如果点击确认选点按钮,则返回选点结果对象,否则返回null
console.log(location,'locaiton');
var s = wx.getStorageSync('select_index');
console.log(s,'----ss')
if(location != null){
if(s == 'start'){
this.setData({start_address:location.address,start_lat:location.latitude,start_lng:location.longitude,start_name:location.name,start_province:location.province,start_city:location.city,
start_district:location.district});
}else if(s == 'end'){
this.setData({end_address:location.address,end_lat:location.latitude,end_lng:location.longitude,end_name:location.name,end_province:location.province,end_city:location.city,
end_district:location.district});
}
}
console.log(this.data,'this data');
chooseLocation.setLocation(null);
},
onUnload () {
// 页面卸载时设置插件选点数据为null,防止再次进入页面,geLocation返回的是上次选点结果
chooseLocation.setLocation(null);
},