Recommended video resources for PHP WeChat development

黄舟
Release: 2023-03-15 16:30:02
Original
1648 people have browsed it

WeChat development has been very popular in recent years. Many friends are learning WeChat development. Today I will introduce to you a video about PHP WeChat development, in the course "PHP WeChat Development Video Tutorial" , which introduces in detail the preparatory conditions for WeChat development and how to apply for a WeChat public account. The course is from easy to deep and has detailed content, which is very suitable for novices to learn.

Recommended video resources for PHP WeChat development

Course playback address: //m.sbmmt.com/course/364.html

The teacher’s teaching style:

The teacher’s lectures are simple, clear, layer-by-layer analysis, interlocking, rigorous argumentation, rigorous structure, and use the logical power of thinking to attract students’ attention Strength, use reason to control the classroom teaching process. The teaching skills are full of wit. Various teaching methods and techniques are readily available and can be used freely and appropriately without any trace of polishing.

The more difficult part in this video should be: developing simple processing of positioning information and program optimization:

WeChat applet implements simple positioning function, easy to read, and obtains Latitude and longitude information

Create a single page under pages such as local

local.js is as follows

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          
      })  
    }  
 })  
}  
})
Copy after login

local.wxml is as follows

  
  
    经度:  
      
    纬度:  
        
      
      
      
  
Copy after login

in app.json

{  
  "pages":[  
    "pages/local/local"  
  ],  
  "window":{  
    "backgroundTextStyle":"light",  
    "navigationBarBackgroundColor": "#fff",  
    "navigationBarTitleText": "定位",  
    "navigationBarTextStyle":"black"  
  }  
}
Copy after login

The above is the detailed content of Recommended video resources for PHP WeChat development. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!