您好,登錄后才能下訂單哦!
效果:(直接復(fù)制代碼,可查看效果)
可以通過拖動(dòng)地圖,搜索地址,選擇地址,并將地址值傳給文本框
進(jìn)入以下界面
點(diǎn)擊確定后。
代碼如下:
wxml:
<view class="box2"> <view class="box2_left">收貨地址</view> <input type="text" class="box2_right" placeholder="請選擇收貨地址" bindtap="onChangeAddress" value='{{chooseAddress}}'></input> <view class="fuhao" bindtap="onChangeAddress">></view> </view>
wxss:
.box2{ width: 680rpx; min-height: 90rpx; display: flex; flex-direction: row; align-items: center; border-bottom: solid 2rpx #D7D7D7; } .box2_left{ width: 180rpx; font-size: 15px; color: #000000; } .box2_right{ width: 406rpx; min-height: 90rpx; display: flex; align-items: center; font-size: 14px; } .fuhao{ width: 70rpx; height:90rpx; font-size: 25px; display: flex; flex-direction: row-reverse; align-items: center; }
js:
//移動(dòng)選點(diǎn) onChangeAddress: function () { var _page = this; wx.chooseLocation({ success: function (res) { _page.setData({ chooseAddress: res.name }); }, fail: function (err) { console.log(err) } }); },
這里顯示在文本框的內(nèi)容只是返回結(jié)果中的name,整個(gè)返回結(jié)果是下面這中形式的:
wx.chooseLocation:在文檔中的位置點(diǎn)這里
總結(jié)
以上所述是小編給大家介紹的微信小程序 (地址選擇1)--選取搜索地點(diǎn)并顯示效果,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。