WeChat Mini Program Development Tutorial (Basics) 1-First Introduction to WeChat Mini Programs
WeChat Mini Program Development Tutorial (Basics) 2-WeChat Mini Program Structure Overview
Written in the previous tutorial Yes, the development tool will generate a default program framework, in which the main process code of the program is included in app.js. In the default implementation, this part of the function is relatively simple, but it is still valuable for learning and researching small program development.
Since there are not many lines of code, I will post it all at once and explain it later
//app.js App({ onLaunch: function () { //调用API从本地缓存中获取数据 var logs = wx.getStorageSync('logs') || [] logs.unshift(Date.now()) wx.setStorageSync('logs', logs) }, getUserInfo:function(cb){ var that = this if(this.globalData.userInfo){ typeof cb == "function" && cb(this.globalData.userInfo) }else{ //调用登录接口 wx.login({ success: function () { wx.getUserInfo({ success: function (res) { that.globalData.userInfo = res.userInfo typeof cb == "function" && cb(that.globalData.userInfo) } }) } }) } }, globalData:{ userInfo:null } })
The code defines an App object, which contains two methods, onLaunch and getUserInfo, and the globalData member variable
The onLaunch method will be called by the framework when the program starts. In this method, the program obtains a logs variable through the local storage interface provided by WeChat. The first time it is obtained, it will return empty. At this time, the variable is initialized to an empty array. Then add a formatted time string at the head of the array, and then store the array variable locally.
The WeChat applet framework provides a series of APIs to help us store local data. The above code uses two APIs, wx.getStorageSync and wx.setStorageSync. For more related APIs, please refer here
The getUserInfo method is easy to understand and will perform the function of obtaining user information. However, this method is different from onLaunch. It is not a function preset by the framework, so it will not automatically trigger the call. This method is called in the onload method of index.js (the index.js part will be explained in subsequent tutorials). This method requires the caller to pass a parameter named cb. First, it determines whether the user information has been obtained. If it has been obtained and cb is a function, the cb function will be called and the globalData member variable will be passed in. Otherwise, the wx.login interface will be called. to obtain user information.
Students who are not familiar with js or have little contact with scripting languages may be confused by the syntax of the above code. These lines of code involve concepts such as function callbacks, anonymous functions, closures, etc. I will focus on this in the future. Write a separate tutorial for each part.
The code finally defines the globalData member variable, which contains the userInfo variable to save user information.
The above is the detailed content of Basics of WeChat Mini Program Development - app.js (3). For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了关于基础架构原理的相关内容,其中包括了宿主环境、执行环境、小程序整体架构、运行机制、更新机制、数据通信机制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了关于云服务的配置详解,包括了创建使用云开发项目、搭建云环境、测试云服务等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了关于富文本编辑器的实战示例,包括了创建发布页面、实现基本布局、实现编辑区操作栏的功能等内容,下面一起来看一下,希望对大家有帮助。

西安坐地铁用的小程序为“乘车码”。使用方法:1、打开手机微信客户端,点击“发现”中的“小程序”;2、在搜索栏中输入“乘车码”进行搜索;3、直接定位城市西安,或者搜索西安,点击“西安地铁乘车码”选项的“去乘车”按钮;4、根据腾讯官方提示进行授权,开通“乘车码”业务即可利用该小程序提供的二维码来支付乘车了。

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了关于开发工具介绍的相关内容,包括了下载开发工具以及编辑器总结等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了怎么实现小程序授权登录功能的相关内容,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version
Recommended: Win version, supports code prompts!

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
