這一篇就廢話少一點,直接上代碼吧,三個接口都是微信提供的。git
index.js微信
//index.js //獲取應用實例 var app = getApp() Page({ data:{ userinfo : {}, systemInfo:{}, location :{} }, onShow:function(){ var that = this; // 獲取用戶資料 wx.getUserInfo({ success:function(res){ that.setData({ userinfo:res.userInfo }); } }); // 獲取系統資料 wx.getSystemInfo({ success:function(res){ that.setData({ systemInfo : res }); } }); // 獲取位置信息 wx.getLocation({ success:function(res){ that.setData({ location:res }); } }); } })
index.wxmlapp
<view class="header"> <image class="user-header" src="{{userinfo.avatarUrl}}"></image> <text >{{userinfo.province}} {{userinfo.city}}</text> <text >{{userinfo.nickName}}</text> </view> <view class="slice-line"></view> <view class="center"> <text class="text">系統信息</text> </view> <view class="info-box"> <text class="info-text">手機型號:{{systemInfo.model}}</text> <text class="info-text">設備像素比:{{systemInfo.pixelRatio}}</text> <text class="info-text">窗口寬度:{{systemInfo.windowWidth}}</text> <text class="info-text">窗口高度:{{systemInfo.windowHeight}}</text> <text class="info-text">微信設置的語言:{{systemInfo.language}}</text> <text class="info-text">微信版本號:{{systemInfo.version}}</text> </view> <view class="center"> <text class="text">位置信息</text> </view> <view class="slice-line"></view> <view class="info-box"> <text class="info-text">緯度:{{location.latitude}}</text> <text class="info-text">經度:{{location.longitude}}</text> <text class="info-text">速度:{{location.speed}}</text> <text class="info-text">位置精確度:{{location.accuracy}}</text> </view> <view style="margin-top:100rpx;width:100%;height:2rpx;"></view>
最後效果圖this
好了。文本介紹了三個接口的使用方式,具體怎麼發揮,你們自行判斷吧。 spa
源碼奉上 http://pan.baidu.com/s/1gfLpuKjcode