您好,登錄后才能下訂單哦!
經(jīng)過最近兩年多的發(fā)展,小程序的地位也逐漸越來越高了,各個(gè)平臺(tái)前赴后繼做了自家的小程序平臺(tái),隨著市場(chǎng)的需求越來愈多,uni-app 是一個(gè)使用 Vue.js 開發(fā)所有前端應(yīng)用的框架,開發(fā)者編寫一套代碼,可發(fā)布到iOS、Android、H5、以及各種小程序(微信/支付寶/百度/頭條/QQ/釘釘)等多個(gè)平臺(tái)。即使不跨端,uni-app同時(shí)也是更好的小程序開發(fā)框架。
在定位功能中,本程序用到騰訊地圖的api 以及 騰訊天氣的api接口,
需要到官網(wǎng)中注冊(cè)開發(fā)者賬號(hào),通過注冊(cè)后得到的appKey來請(qǐng)求我們需要的數(shù)據(jù),詳細(xì)注冊(cè)步驟請(qǐng)自行度娘
由于需要用到定位功能,uniapp的getLocation方法獲取到的是當(dāng)前位置的坐標(biāo),然后對(duì)應(yīng)騰訊地圖具體城市
uni.getLocation({
// #ifdef MP-WEIXIN
type: 'wgs84',
// #endif
async success (res) {
const {latitude, longitude} = res
const result = await that.ajax({url: 'https://apis.map.qq.com/ws/geocoder/v1', data: {
location: `${latitude},${longitude}`,
key: ''
}})
let {province, city, district} = result.result.address_component
that.getData(province, city, district)
},
fail(){
uni.showModal({
content: '檢測(cè)到您沒打開定位權(quán)限,是否去設(shè)置打開?',
confirmText: "確認(rèn)",
cancelText: "取消",
success: function (res) {
if (res.confirm) {
// #ifdef MP-WEIXIN
wx.openSetting({
success: (res) => {
that.getIn()
}
})
// #endif
// #ifdef MP-ALIPAY
my.openSetting({
success: (res) => {
that.getIn()
}
})
// #endif
}
}
});
}
})
web前端開發(fā)學(xué)習(xí)Q-q-u-n:784783012 ,分享學(xué)習(xí)的方法和需要注意的小細(xì)節(jié),不停更新最新的教程和學(xué)習(xí)方法(詳細(xì)的前端項(xiàng)目實(shí)戰(zhàn)教學(xué)視頻)
得到城市名后,再用城市名查詢天氣的接口,得到未來幾天的天氣預(yù)報(bào)。
天氣接口使用騰訊天氣接口api。
在小程序中使用前,要在小程序設(shè)置界面,開發(fā)設(shè)置中添加request合法域名。
methods: {
async getData(province, city, district){
const that = this
const data = await that.ajax({url: 'https://wis.qq.com/weather/common', data: {
source: 'xw',
weather_type: 'observe|alarm|air|forecast_1h|forecast_24h|index|limit|tips|rise',
province: province,
city: city,
county: district
}})
that.region = [province, city, district]
if(data.status != 200){
uni.showToast({
title: result.message,
icon: 'none'
});
return false;
}
if(!data.data.air.aqi_name){
uni.showToast({
title: '暫無該地區(qū)的天氣信息',
icon: 'none'
});
return false;
}
that.data = data.data
}
}
web前端開發(fā)學(xué)習(xí)Q-q-u-n:784783012 ,分享學(xué)習(xí)的方法和需要注意的小細(xì)節(jié),不停更新最新的教程和學(xué)習(xí)方法(詳細(xì)的前端項(xiàng)目實(shí)戰(zhàn)教學(xué)視頻)
由于沒有什么審美,缺乏想象力,參考騰訊天氣的界面來做的。功能十分簡單,查看當(dāng)前地區(qū)的天氣和切換其他地區(qū)的天氣,查看最近24小時(shí)的天氣情況以及最近6天的天氣情況,展示今天的農(nóng)歷時(shí)間。
想快速完成小程序的搭建,里面的折線圖采用的uchart.js,
因?yàn)榭梢约嫒葜Ц秾毿〕绦蚝臀⑿判〕绦?,農(nóng)歷查詢也是采用的插件calendar.js
折線圖在支付寶小程序中會(huì)有模糊的問題,需要做兼容處理
<template>
<!-- #ifdef MP-ALIPAY -->
<canvas canvas-id="canvas" id="canvas" width="750" height="240" class="canvas">
</canvas>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<canvas canvas-id="canvas" id="canvas" class="canvas">
</canvas>
<!-- #endif -->
</template>
<script>
var wxCharts = require('../../utils/chart.js');
lineChart = new wxCharts({
$this: this,
canvasId: 'canvas',
type: 'line',
categories: ['', '', '', '', '' ,''],
colors: ['#ffad35', '#4fc3f7'],
background: '#fff',
animation: true,
series: [{
name: '',
data: that.max,
format: function (val, name) {
return val + '°';
}
}, {
name: '',
data: that.min,
format: function (val, name) {
return val + '°';
}
}],
xAxis: {
disableGrid: true,
disabled: true,
axisLine: false
},
yAxis: {
max: Math.max.apply(Math, that.max) * 1 + 0.1,
disabled: true,
disableGrid: true,
},
legend:{
show: false
},
// #ifdef MP-ALIPAY
pixelRatio: that.pixelRatio, // 解決支付寶模糊問題
// #endif
width: that.cWidth,
height: that.cHeight
});
</script>
微信小程序有城市選擇組件,支付寶的沒有可以直接使用的城市組件,uniapp官方介紹:支持安裝 mpvue 組件,但npm方式不支持小程序自定義組件(如 wxml格式的vant-weapp),找到一款支付寶可以使用的城市插件:mpvue-citypicker,
城市選擇組件
<template>
<view class="txt-location" @tap="showCityPicker">
<view class="icon"></view>
<block v-if="region.length">{{region[0]}}{{region[1]}}{{region[2]}}</block>
<block v-else>選擇城市</block>
<!-- #ifdef MP-WEIXIN -->
<picker class="city" mode="region" @change="handleChange" :value="region">
<view class="picker">
當(dāng)前選擇:{{region[0]}},{{region[1]}},{{region[2]}}
</view>
</picker>
<!-- #endif -->
</view>
<mpvue-city-picker ref="mpvueCityPicker" :pickerValueDefault="pickerValueDefault" @onConfirm="onConfirm"></mpvue-city-picker>
</template>
<script>
import mpvueCityPicker from 'mpvue-citypicker';
export default {
data() {
return {
region: [],
pickerValueDefault: [0, 0, 1]
};
},
components: {
mpvueCityPicker
},
methods: {
showCityPicker() {
// #ifdef MP-ALIPAY
this.$refs.mpvueCityPicker.show()
// #endif
},
onConfirm(e) {
if(e.label){
this.region = e.label.split('-')
this.getData(this.region[0], this.region[1], this.region[2])
}
},
handleChange(e) {
this.region = e.detail.value
this.getData(this.region[0], this.region[1], this.region[2])
}
}
};
</script>
web前端開發(fā)學(xué)習(xí)Q-q-u-n:784783012 ,分享學(xué)習(xí)的方法和需要注意的小細(xì)節(jié),不停更新最新的教程和學(xué)習(xí)方法(詳細(xì)的前端項(xiàng)目實(shí)戰(zhàn)教學(xué)視頻)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。