微信開發在近幾年裡都是非常的受歡迎,很多小夥伴都在學習微信開發,今天就給大家介紹一部關於php微信開發的影片、在《PHP微信開發影片教學》課程中,詳細介紹了微信開發的準備條件,以及如何申請一個微信公眾帳號,課程由淺入深,內容詳實,非常適合新手學習。
課程播放網址:http://www.php.cn/course/364.html
該老師講課風格:
教師講課深入淺出,條理清楚,層層剖析,環環相扣,論證嚴密,結構嚴謹,用思維的邏輯力量吸引學生的注意力,用理智控制課堂教學進程。教學的技巧,充滿機智,各種教學方法、技巧信手拈來,運用自如,恰到好處,並絲毫不帶有雕琢的痕跡。
本影片中較為難點的應該是:開發定位資訊的簡單處理以及程式最佳化:
微信小程式實現簡單定位功能,簡單易讀,獲取經緯度資訊
在pages下建立一個單頁如local
local.js如下
var app = getApp() Page({ data:{ latitude:'', longitude:'' }, getLocation:function(e) { console.log(e) var that = this wx.getLocation({ type: 'wgs84', // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标 success: function(res){ console.log(res) that.setData({ longitude:res.longitude, latitude:res.latitude }) } }) } })
local.wxml如下
<view class="page-body"> <view class="page-body-form"> <text class="page-body-form-key">经度:</text> <input class="page-body-form-value" type="text" value="{{longitude}}" name="longitude"></input> <text class="page-body-form-key">纬度:</text> <input class="page-body-form-value" type="text" value="{{latitude}}" name="latitude"></input> <view class="page-body-buttons"> <button class="page-body-button" type="primary" bindtap="getLocation">获取位置</button> </view> </view> </view>
在app.json中
{ "pages":[ "pages/local/local" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "定位", "navigationBarTextStyle":"black" } }
以上是PHP微信開發影片資源推薦的詳細內容。更多資訊請關注PHP中文網其他相關文章!