您好,登錄后才能下訂單哦!
小編給大家分享一下怎么利用微信小程序獲取OneNet平臺數(shù)據(jù)顯示溫濕度,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、我這里的設備是通過MQTT協(xié)議連接到OneNet平臺的
2、微信小程序獲取OneNet數(shù)據(jù)需要得到產(chǎn)品的api-key、設備id
3、這里我是把溫濕度都放在同一個設備,后面只需要查詢一個設備即可獲得兩個數(shù)據(jù)
4、查詢OneNet平臺多協(xié)議接入文檔,這里直接查看MQTT的API使用
5、我用ApiPost來進行測試是否能獲取數(shù)據(jù)
1、index.wxml
<!--pages/index/index.wxml--> <view class= "content"> <view class= "zm"> <text class="zm1">照明開關</text> <switch class="kai" checked="{{isChecked1}}" bindchange="changeSwitch2"/> </view> <view > <label class="xia"> <text class="zm1">排氣扇開關</text> <switch class="kai" checked="{{isChecked1}}" bindchange="changeSwitch2"/> </label> </view> <view > <label class="xia"> <text class="zm1">當前溫度:{{wendu}}°C</text> </label> </view> <view > <label class="xia"> <text class="zm1">當前濕度:{{shidu}} %</text> </label> </view> <button class="login-btn" bindtap="points" >顯示溫濕度</button> </view>
2、index.wxss
/* pages/index/index.wxss */ page { background: #f6f6f6; display: flex; flex-direction: column; justify-content: flex-start; } .headTitle{ width: 100%; height: 80rpx; background-color: #ffffff; overflow:hidden ;/** 設置超出內(nèi)容隱藏 */ white-space:nowrap; /*設置超出不換行 */ border-bottom :1px solid #F3F3F3; } .headTitle .titleItem{ display: inline-block; line-height:80rpx; color: #889999; font-size:34rpx; margin: 0 20rpx; } .headTitle .selctItem{ color: #000000; font-weight: bold; } .itemView{ width: 100%; height:180rpx; position: relative; border-bottom: 1px solid #F3F3F3; } .zm{ margin-top: 20rpx; border:1px solid#ebe4e286; width:750rpx; height: 100rpx; border-radius: 5px; font-size: 36; font-weight: bold; line-height: 80rpx; color: #32d5e0; text-align: center; display: flex; position: relative;/*父元素位置要設置為相對*/ } .login-btn{ width: 40%!important; background-color: #33ff33; color: white; font-weight: normal; } .content{ margin-top: 20rpx; border:1px solid#ebe4e286; width:750rpx; height: 600rpx; border-radius: 5px; font-size: 36; font-weight: bold; line-height: 80rpx; color: #32d5e0; text-align: center; flex-direction: column; display: flex; } .xia{ justify-content: space-between; } .zm1{ position: absolute; /* 要約束所在位置的子元素的位置要設置成絕對 */ left: 30rpx; /* 靠右調節(jié) */ } .radio{ display:inline-block; /* 橫向布局*/ } .kai{ position: absolute; /* 要約束所在位置的子元素的位置要設置成絕對 */ right: 100rpx; /* 靠右調節(jié) */ } .mos{ left: 120rpx; /* 靠右調節(jié) */ height: 200rpx; }
3、界面效果
1、在wxml里面我給按鈕添加了點擊事件,命名為points,相對應的在index.js里面也需要添加相對應函數(shù)
points:function(e) { },
2、參考小程序文檔,我這里采用wx.request 獲取數(shù)據(jù),這段數(shù)據(jù)獲取也可以放在onLoad()函數(shù)里面,只不過顯示效果沒有按鈕效果明顯。然后還要設置不校驗合法域名選項。
points:function(e) { var that = this wx.request({ //設備ID //api-key url: 'http://api.heclouds.com/devices/xxxxxxxxxx/datapoints?', //xxxxxxxxxx這里填寫你的設備id header:{ "api-key":"xxxxxxx" //這里寫你的api-key }, data:{ limit:1 }, method :"GET", //獲取成功 success:function(res){ that.setData({ shidu:res.data.data.datastreams[0].datapoints[0].value, //這里的shidu要跟wxml{{shidu}} 名字相同 wendu:res.data.data.datastreams[1].datapoints[0].value, }) } }) },
3、關于如何顯示到具體數(shù)字,因Json數(shù)據(jù)而異,下面我這兩行代碼是根據(jù)Json數(shù)據(jù)來定位的
shidu:res.data.data.datastreams[0].datapoints[0].value, wendu:res.data.data.datastreams[1].datapoints[0].value,
4、效果展示
以上是“怎么利用微信小程序獲取OneNet平臺數(shù)據(jù)顯示溫濕度”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。