您好,登錄后才能下訂單哦!
request封裝
為小程序get/post的promise封裝
rq.js
/* * url {String} 請求地址接口 * data {Object} 請求參數(shù) * param {Object} request參數(shù) * method {String} 指定使用post或者是get方法 */ export function request(url, data={}, param={}, method='POST') { return new Promise((resolve, reject)=>{ let postParam = { url, method, data, // timeout // dataType // responseType header: { 'content-type': 'application/json' // 默認(rèn)值 }, success(res) { resolve(res) }, error: function (e) { reject(e) } } postParam = Object.assign(postParam, param) postParam.fail = postParam.error if (postParam.url) wx.request(postParam) }) } module.exports = { get(url, data, param){ return request(url, data={}, param={}, method='GET') }, post(){ return request.apply(null, arguments) } }
位置服務(wù)方法
需要開通小程序的位置服務(wù)功能,在小程序控制臺(tái)
簡單的封裝了三個(gè)位置服務(wù)的方法
// request的promise封裝 const iKit = request('./rq.js') // key為開通位置服務(wù)所獲取的查詢值 // 下面這個(gè)key是隨便寫的 let key = 'JKDBZ-XZVLW-IAQR8-OROZ1-XR3G9-UYBD5' /* * 搜索地區(qū)... * 搜索地區(qū)的商圈, 如搜索 kfc 廣州市 * key {String} 搜索內(nèi)容 * region {String} 搜索區(qū)域 */ export function searchRegion(kw, region) { let opts = { keyword: encodeURI(kw), boundary: region ? `region(${encodeURI(region)}, 0)` : '', // 0 為限定范圍搜搜索,1為開放范圍搜素偶 page_size: 10, // 搜索結(jié)果分頁最大條數(shù) page_index: 1, // 指定分頁 key } return new Promise((resolve, rej)=>{ iKit.get('https://apis.map.qq.com/ws/place/v1/search', opts).then(res=>{ resolve(res.data.data) }) }) } /* * 搜索附近的... * 以當(dāng)前位置的經(jīng)緯度搜索附近商圈,如附近的酒店,快餐等等 * key {String} 搜索內(nèi)容 * params {Object} 搜索參數(shù) 包含三個(gè)參數(shù) lat緯度,lng經(jīng)度,distance范圍(單位米) */ export function searchCircle(kw, params={}) { let {lat, lng, distance} = params if (!lat && !lng) return if (!distance) distance = 1000 // 搜索范圍默認(rèn)1000米 let opts = { keyword: encodeURI(kw), boundary: `nearby(${lat},${lng},${distance})`, orderby: '_distance', // 范圍搜索支持排序,由近及遠(yuǎn) page_size: 20, // 搜索結(jié)果分頁最大條數(shù) page_index: 1, // 指定分頁 key } return new Promise((resolve, rej)=>{ iKit.get('https://apis.map.qq.com/ws/place/v1/search', opts).then(res=>{ resolve(res.data.data) }) }) } // 所在地的城市,省份等區(qū)域信息 /* * 所在地的城市,省份等區(qū)域信息 * 如當(dāng)前地址所在省份、城市 * lat {Number} 緯度 * lng {Number} 經(jīng)度 */ export function myCity(lat, lng) { return new Promise((resolve, rej)=>{ let opts = { location: `${lat},${lng}`, key } iKit.get(`https://apis.map.qq.com/ws/geocoder/v1/`, opts).then(res => { resolve(res.data.result) }) }) }
調(diào)用
wx.getLocation({ type: 'wgs84', success(location) { locationPosition = location // 所在地信息 myCity(location.latitude, location.longitude).then(res => { let myCityInfo = res.ad_info let {city, nation, province, city_code, adcode} = myCityInfo console.log({title: `國家: ${nation},省份: ${province},城市: ${city}`}) }) // 附近搜索 searchCircle('快餐', { lat: location.latitude, lng: location.longitude, distance: 500 }).then(res=>{ console.log(res) }) // 地區(qū)搜索 searchRegion('酒店', '廣州').then(res=>{ console.log(res) }) } })
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(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)容。