WeChat is getting closer and closer to our lives, and some developers are constantly developing WeChat mini programs. So how to develop mini programs? How to get started? Then we will use a WeChat mini program as an example to briefly introduce the entry-level usage of WeChat mini programs.
1. Register a mini program account
1. Enter the WeChat public platform ( https://mp.weixin.qq.com/), register a mini program account and fill in the corresponding information according to the prompts
2. After successful registration, enter the homepage and go through the mini program release process. ->Mini Program Development and Management->In the configuration server, click "Developer Settings"
3. You will get an AppID and record the AppID, which will be used later when creating the project #.
##Note: If you want to experience the mini program on your mobile phone with a non-administrator WeChat ID, then we also need to operate "Bind Developer", that is, in the "User Identity"-"Developer" module, bind. You need to use the WeChat account to experience the mini program. This tutorial uses the administrator’s WeChat account by default. For efficient development, WeChat Mini Program has launched a new developer tool that integrates development and debugging, code editing and program publishing functions.1. Download page: https://mp.weixin. qq.com/debug/wxadoc/dev/devtools/download.html?t=201715
According to the system, select the corresponding tool version to download
(1) The editing area can perform basic operations such as code writing and adding, deleting and renaming files for the current project
(2) Program Debugging mainly has three functional areas: simulator, debugging tools and small program operation area
(3) The project page card has three main functions: displaying current project details, submitting preview and submitting upload and project configuration
Note: When starting the tool, developers need to use the WeChat ID that has been successfully bound in the background to scan the QR code to log in. All subsequent operations will be based on this WeChat account
? test ├─ page │ └─ index │ ├─ index.js │ ├─ index.json │ ├─ index.wxml │ └─ index.wxss ├─ app.js ├─ app.json └─ app.wxss2. Example file description and source code
A small program includes an app (main part) and multiple pages (Page)
(1) app is used to describe the overall program and consists of three files. The .js suffix is the script file, the .json suffix is the configuration file, and the .wxss suffix is is the style sheet file, which must be placed in the root directory of the project.
app.js is the script code of the mini program (required). You can monitor and process the life cycle functions of the mini program in this file. , declare global variables, and call the rich API provided by the framework.
? App({ onLaunch: function () { console.log('App Launch') }, onShow: function () { console.log('App Show') }, onHide: function () { console.log('App Hide') }, globalData: { hasLogin: false } })
app.json is the global configuration of the entire applet (required). It is used to globally configure the WeChat applet and determine the path of the page file. , window display, setting network timeout, setting multiple tabs, etc. Accepts an array, each item is a string, to specify which pages the mini program consists of. The [path + page name] of each page in the WeChat mini program needs to be written in the pages of app.json, and the first page in pages is the homepage of the mini program.
{ "pages":[ "page/index/index" ], "window":{ "navigationBarTextStyle": "black", "navigationBarTitleText": "欢迎页", "navigationBarBackgroundColor": "#fbf9fe", "backgroundColor": "#fbf9fe" }, "debug": true }app.wxss is the public style sheet for the entire applet (not required).
page { background-color: #fbf9fe; height: 100%; } .container { display: flex; flex-direction: column; min-height: 100%; justify-content: space-between; }(2) Page is used to describe a page. A page consists of four files. Here we take the homepage index as an example. Each small program page is composed of four different suffix files with the same name under the same path. Composition, such as: index.js, index.wxml, index.wxss, index.json. Files with the .js suffix are script files, files with the .json suffix are configuration files, files with the .wxss suffix are style sheet files, and files with the .wxml suffix are page structure files.
index.js is the script file of the page (required). In this file, we can monitor and process the life cycle functions of the page, obtain mini program instances, declare and process data, and respond to page interaction events. wait.
Page({ data: { title:'小程序', desc:'Hello World!' } })
index.wxml is the page structure file (required).
<view class="container"> <view class="header"> <view class="title">标题:{{title}}</view> <view class="desc">描述:{{desc}}</view> </view> </view>index.wxss is a page style sheet file (not required). When there is a page style sheet, the style rules in the page's style sheet will cascade over the style rules in app.wxss. If you do not specify the style sheet of the page, you can also directly use the style rules specified in app.wxss in the structure file of the page.
.header { padding: 80rpx; line-height: 1; } .title { font-size: 52rpx; } .desc { margin-top: 10rpx; color: #888888; font-size: 28rpx; }index.json is the page configuration file (not required). When there is a page configuration file, the configuration items on the page will overwrite the same configuration items in the window of app.json. If there is no specified page configuration file, the default configuration in app.json will be used directly on the page. No need to specify here.
Tips:
a. In order to facilitate developers to reduce configuration items, the mini program stipulates that the four files describing the page must have the same path and file name
b. The mini program provides a rich API, which you can choose according to your own needs (https://mp.weixin.qq.com/debug/wxadoc/dev/api/?t=201715)
4. Test Mini Program Example
2. Fill in the AppID and project name of the mini program, select the mini program instance folder written in the third step, and click "Add Project".
3. If the following results appear, congratulations, your first small program project has been successfully written! Click "Edit" on the left sidebar, and you can directly modify the code in the right editing window. Save (CTRL+S) and refresh (F5) to take effect.
4. If you want to see the effect of the mini program project on your mobile phone, click "Project" on the left sidebar, click "Preview" to generate a QR code, open WeChat and scan, and you can see it.
Summary
The above is the entire content of this article. I hope developers can get ideas from it and help everyone develop WeChat better. Applets.
Related recommendations:
The most complete WeChat mini program project example
Introduction to WeChat Mini Program
Introduction to the method of realizing shared variable values in WeChat Mini Program
The above is the detailed content of Introductory Example of WeChat Mini Program Development. For more information, please follow other related articles on the PHP Chinese website!

随着移动互联网技术和智能手机的普及,微信成为了人们生活中不可或缺的一个应用。而微信小程序则让人们可以在不需要下载安装应用的情况下,直接使用小程序来解决一些简单的需求。本文将介绍如何使用Python来开发微信小程序。一、准备工作在使用Python开发微信小程序之前,需要安装相关的Python库。这里推荐使用wxpy和itchat这两个库。wxpy是一个微信机器

小程序能用react,其使用方法:1、基于“react-reconciler”实现一个渲染器,生成一个DSL;2、创建一个小程序组件,去解析和渲染DSL;3、安装npm,并执行开发者工具中的构建npm;4、在自己的页面中引入包,再利用api即可完成开发。

微信小程序是一种轻量级的应用程序,可以在微信平台上运行,不需要下载安装,方便快捷。Java语言作为一种广泛应用于企业级应用开发的语言,也可以用于微信小程序的开发。在Java语言中,可以使用SpringBoot框架和第三方工具包来开发微信小程序。下面是一个简单的微信小程序开发过程。创建微信小程序首先,需要在微信公众平台上注册一个小程序。注册成功后,可以获取到

实现思路x01服务端的建立首先,在服务端,使用socket进行消息的接受,每接受一个socket的请求,就开启一个新的线程来管理消息的分发与接受,同时,又存在一个handler来管理所有的线程,从而实现对聊天室的各种功能的处理x02客户端的建立客户端的建立就要比服务端简单多了,客户端的作用只是对消息的发送以及接受,以及按照特定的规则去输入特定的字符从而实现不同的功能的使用,因此,在客户端这里,只需要去使用两个线程,一个是专门用于接受消息,一个是专门用于发送消息的至于为什么不用一个呢,那是因为,只

PHP与小程序的地理位置定位与地图显示地理位置定位与地图显示在现代科技中已经成为了必备的功能之一。随着移动设备的普及,人们对于定位和地图显示的需求也越来越高。在开发过程中,PHP和小程序是常见的两种技术选择。本文将为大家介绍PHP与小程序中的地理位置定位与地图显示的实现方法,并附上相应的代码示例。一、PHP中的地理位置定位在PHP中,我们可以使用第三方地理位

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了如何在小程序中用公众号模板消息,下面一起来看一下,希望对大家有帮助。

随着小程序的广泛应用,越来越多的开发者需要将其与后台服务器进行数据交互,其中最常见的业务场景之一就是上传文件。本文将介绍在小程序中实现文件上传的PHP后台实现方法。一、小程序中的文件上传在小程序中实现文件上传,主要依赖于小程序APIwx.uploadFile()。该API接受一个options对象作为参数,其中包含了要上传的文件路径、需要传递的其他数据以及

苏州健康码的小程序叫“苏康码”,它是苏州市疫情防控指挥部指定的通行服务码,疫情防控期间在全市范围内通用,可以作为广大民众日常出行的重要凭证,同时作为防疫人员查验的主要依据;也是省内所有来苏逗苏人员以及在苏工作学习生活,旅游或临时停留人员申报的键康申报数据为基础,结合相关数据比对后动态生成的个人电子健康凭证。


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
