由于后臺(tái)的接口里面满败,省肤频、市、區(qū)字段是必填的算墨,而剛開始并沒有意識(shí)到百度地圖返回的當(dāng)前位置的市宵荒、區(qū)可能存在為空的情況,測試環(huán)境也沒測試此種場景净嘀,導(dǎo)致線上問題骇扇。所以此處記錄一下,恐別的同事踩坑面粮。
// 獲取省市區(qū)及詳細(xì)地址
detailAddress(){
let that=this;
let gc = new BMap.Geocoder();
gc.getLocation(that.mapPoint, function(rs){
that.detailedAddress = rs.address;
that.addressComponents = rs.addressComponents;
})
}
對此場景前端的一些兼容處理少孝。先判斷市有沒有,沒有toast提示熬苍。如果區(qū)沒有稍走,就用市的數(shù)據(jù)
if (!this.addressComponents.city) {
uni.showToast({
title: '請輸入市',
icon: 'none',
duration: 3000
});
return;
}
const params = {
province: this.addressComponents.province,
city: this.addressComponents.city,
area: this.addressComponents.district?this.addressComponents.district:this.addressComponents.city
}